X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2Findex_wr.php;h=6cb15808d7ed2df38f8b4ef3d2ae3ccf04e08e8e;hb=27185d840648e6857ab197900e3cb11baf5a3692;hp=ab6878c442725c8e665aa331e8507aadf7c4e4d3;hpb=3739ebe6b9ad92f032e30a3a151b47cd5b329aa0;p=brisk.git diff --git a/web/briskin5/index_wr.php b/web/briskin5/index_wr.php index ab6878c..6cb1580 100644 --- a/web/briskin5/index_wr.php +++ b/web/briskin5/index_wr.php @@ -47,12 +47,13 @@ log_load("bin5/index_wr.php"); */ log_wr('COMM: '.$mesg); -if ($table_idx < 0 || $table_idx >= TABLE_N) +$table_idx = (int)$table_idx; +if ($table_idx < 0 || $table_idx >= TABLES_N) exit; -log_mop(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg)); +log_wr(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg)); -$sem = Bin5::lock_data($table_idx); +$sem = Bin5::lock_data(TRUE, $table_idx); if (($bri = Bin5::load_data($table_idx,$table_token)) == FALSE) { echo "Bin5 Load data error"; @@ -70,7 +71,7 @@ if (($user = &$bri->get_user($sess, &$idx)) == FALSE) { $argz = explode('|', $mesg); log_wr('POSTSPLIT: '.$argz[0].' user->stat: ['.$user->stat.']'); -log_mop($user->step, 'bin::index_wr.php: after get_user()'); +log_wr($user->step, 'bin::index_wr.php: after get_user()'); if (false && $argz[0] == 'shutdown') { log_auth($user_cur->sess, "Shutdown session. delegate to room gc the autologout"); @@ -490,7 +491,7 @@ else if ($user->stat == 'table') { for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) { $plist .= '|'.xcapelt($ucodes[$i]); } - log_legal($curtime, $user, "STAT:BRISKIN5:FINISH_GAME", $plist); + log_legal($curtime, 'xxx', $user, "STAT:BRISKIN5:FINISH_GAME", $plist); if ($user->table_orig < TABLES_AUTH_N) { require_once("../Obj/dbase_".$G_dbasetype.".phh"); @@ -534,7 +535,7 @@ else if ($user->stat == 'table') { } log_wr("before save data"); Bin5::save_data($bri); -log_mop($user->step, 'bin::index_wr.php: after save_data()'); +log_wr($user->step, 'bin::index_wr.php: after save_data()'); Bin5::unlock_data($sem); exit;