]> mop.ddnsfree.com - git repositories - brisk.git/commitdiff
match and game counter temporarly disabled (waiting for counter script for all users)
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 25 Oct 2015 15:21:27 +0000 (16:21 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Sun, 25 Oct 2015 15:21:27 +0000 (16:21 +0100)
web/Obj/dbase_pgsql.phh

index f9f6888756d663f8ab8b1ca46c107fff2bd11d8e..6299f81e206db418708697ef6aa1a8880c157ab1 100644 (file)
@@ -735,29 +735,34 @@ class BriskDB
                 if ($i < $n)
                     break;
 
-                $cnt_sql = sprintf("UPDATE %susers SET (match_cnt, game_cnt)
+                // FIXME: uncomment when counters are updated
+                if (0 == 1) {
+                    $cnt_sql = sprintf("UPDATE %susers SET (match_cnt, game_cnt)
                                         = (match_cnt+1, game_cnt+1) WHERE %s;",
-                                   $G_dbpfx, $codes_where);
-                error_log($cnt_sql);
-                if (($cnt_pg = $this->query($cnt_sql)) == FALSE || pg_affected_rows($cnt_pg) != $n) {
-                    log_crit(sprintf("bin5_points_save: failed increment match and game [%s]", $cnt_sql));
-                    break;
+                                       $G_dbpfx, $codes_where);
+                    error_log($cnt_sql);
+                    if (($cnt_pg = $this->query($cnt_sql)) == FALSE || pg_affected_rows($cnt_pg) != $n) {
+                        log_crit(sprintf("bin5_points_save: failed increment match and game [%s]", $cnt_sql));
+                        break;
+                    }
                 }
             }
             else {
                 $mtc_obj = pg_fetch_object($mtc_pg,0);
 
-                for ($i = 0 ; $i < $n ; $i++) {
-                    $codes_where .= sprintf("%scode = %d", ($i == 0 ? "" : " OR "), $ucodes[$i]);
-                }
-
-                $cnt_sql = sprintf("UPDATE %susers SET (game_cnt)
+                // FIXME: uncomment when counters are updated
+                if (0 == 1) {
+                    for ($i = 0 ; $i < $n ; $i++) {
+                        $codes_where .= sprintf("%scode = %d", ($i == 0 ? "" : " OR "), $ucodes[$i]);
+                    }
+                    $cnt_sql = sprintf("UPDATE %susers SET (game_cnt)
                                         = (game_cnt+1) WHERE %s;",
                                        $G_dbpfx, $codes_where);
-                error_log($cnt_sql);
-                if (($cnt_pg = $this->query($cnt_sql)) == FALSE || pg_affected_rows($cnt_pg) != $n) {
-                    log_crit(sprintf("bin5_points_save: failed increment game [%s]", $cnt_sql));
-                    break;
+                    error_log($cnt_sql);
+                    if (($cnt_pg = $this->query($cnt_sql)) == FALSE || pg_affected_rows($cnt_pg) != $n) {
+                        log_crit(sprintf("bin5_points_save: failed increment game [%s]", $cnt_sql));
+                        break;
+                    }
                 }
             }