X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=1fe3f1295eabb20243aebc1c589c5f5cee9a7530;hb=ae4baf0b0142cc538df4370430f4971440b33ee6;hp=60eed4c33b03cedc06cf789c87d92d6b94445ebc;hpb=3c9d82a70413ec51c70359bd22f76d5fb6739fdf;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index 60eed4c..1fe3f12 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -44,7 +44,7 @@ define(BRISK_DEBUG, FALSE); $G_false = FALSE; $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "0.8.0"; +$G_brisk_version = "0.8.2"; $root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.'), NOVITA\': nuovo layout che permette più tavoli, più tavoli.', 'Se vuoi iscriverti alla Mailing List, cliccala!' ); @@ -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; @@ -1144,7 +1155,7 @@ function save_data(&$bri) if (($shm = shm_attach($tok, SHM_DIMS)) == FALSE) break; - log_only($sess, "PUT_VAR DI ".strlen(serialize($bri))); + // log_only($sess, "PUT_VAR DI ".strlen(serialize($bri))); if (shm_put_var($shm, $tok, $bri) == FALSE) { log_only($sess, "PUT_VAR FALLITA ".strlen(serialize($bri))); log_only($sess, serialize($bri));