X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=9d033ffbb7879072d5b8ac6dc047b4ae0a9c5944;hb=8866b31f28b69c5dd2857960ddeea08bcb9725d5;hp=60eed4c33b03cedc06cf789c87d92d6b94445ebc;hpb=3c9d82a70413ec51c70359bd22f76d5fb6739fdf;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index 60eed4c..9d033ff 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -764,7 +764,7 @@ class brisco { $table = &$this->table[$user->table]; $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; "; - $user_cur->comm[$user_cur->step % COMM_N] = sprintf('set_names(" %s", " %s", " %s", " %s", " %s"); ', + $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('set_names(" %s", " %s", " %s", " %s", " %s"); ', xcape($this->user[$table->player[($user_cur->table_pos)%PLAYERS_N]]->name), xcape($this->user[$table->player[($user_cur->table_pos+1)%PLAYERS_N]]->name), xcape($this->user[$table->player[($user_cur->table_pos+2)%PLAYERS_N]]->name), @@ -924,6 +924,17 @@ function make_seed() return (float) $sec + ((float) $usec * 100000); } +function log_only2($sess, $log) { + if (BRISK_DEBUG != TRUE) + return; + + + if (($fp = @fopen("/tmp/brisk_only2.log", 'a')) != FALSE) { + fwrite($fp, sprintf("SESS: [%s] [%s]\n", $sess, $log)); + fclose($fp); + } +} + function log_only($sess, $log) { if (BRISK_DEBUG != TRUE) return;