From: Matteo Nastasi (mop) Date: Sat, 18 Mar 2017 10:01:36 +0000 (+0100) Subject: fix: save real tournament id instead of CURRENT tournament X-Git-Tag: v5.4.1~5 X-Git-Url: https://mop.ddnsfree.com/gitweb/?p=brisk.git;a=commitdiff_plain;h=d84c4b0a36d95a7b87c635773e97e586c55ae959 fix: save real tournament id instead of CURRENT tournament --- diff --git a/web/Obj/dbase_pgsql.phh b/web/Obj/dbase_pgsql.phh index 26dcf35..4aa11de 100644 --- a/web/Obj/dbase_pgsql.phh +++ b/web/Obj/dbase_pgsql.phh @@ -721,7 +721,7 @@ class BriskDB // match not exists, insert it // , BIN5_TOURNAMENT_NO_DRAW $mtc_sql = sprintf("INSERT INTO %sbin5_matches (ttok, tidx, mazzo_next, mult_next, tcode) VALUES ('%s', %d, %d, %d, %d) RETURNING *;", - $G_dbpfx, $sql_ttok, $tidx, $table->mazzo, $table->mult, BIN5_TOURNAMENT_CURRENT); + $G_dbpfx, $sql_ttok, $tidx, $table->mazzo, $table->mult, $table->rules->id_get()); if (($mtc_pg = $this->query($mtc_sql)) == FALSE || pg_affected_rows($mtc_pg) != 1) { log_crit(sprintf("bin5_points_save: failed at insert match [%s]", $mtc_sql)); break;