From: Matteo Nastasi (mop) Date: Sun, 25 Feb 2007 10:57:10 +0000 (+0000) Subject: corretta concatenazione di output X-Git-Tag: 3.0.0~292 X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=a2f1fb77cb960b9fc707e67050929921b42a20c2;p=brisk.git corretta concatenazione di output --- diff --git a/web/index_wr.php b/web/index_wr.php index 1dcb06e..b913079 100644 --- a/web/index_wr.php +++ b/web/index_wr.php @@ -220,7 +220,7 @@ else if ($user->stat == 'table') { } for ($i = 0 ; $i < PLAYERS_N ; $i++) { $ret = sprintf('gst.st = %d;', $user_cur[$i]->step+1); - $ret = sprintf('exitlock_show(%d, %s);', $ct, + $ret .= sprintf('exitlock_show(%d, %s);', $ct, ($user_cur[$i]->exitislock ? 'true' : 'false')); $user_cur[$i]->comm[$user_cur[$i]->step % COMM_N] = $ret; log_wr($sess, $user_cur[$i]->comm[$user_cur[$i]->step % COMM_N]);