From: Matteo Nastasi (mop) Date: Sun, 4 Dec 2011 10:26:40 +0000 (+0100) Subject: fixed silent error in briskin5/index_wr.php and corrected version X-Git-Tag: 3.6.3^0 X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=brisk.git;a=commitdiff_plain;h=39b7e78ebf3db1fcb3965675be9332435778e57f fixed silent error in briskin5/index_wr.php and corrected version --- diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index 8b82a48..1aac984 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -136,7 +136,7 @@ $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi', $G_lng = langtolng($G_lang); $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 ); -$G_brisk_version = "3.6.1"; +$G_brisk_version = "3.6.3"; /* MLANG: ALL THE INFO STRINGS IN brisk.phh */ $root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': nuovo sistema di evidenziazione degli utenti registrati.', diff --git a/web/briskin5/index_wr.php b/web/briskin5/index_wr.php index f358440..8e894fd 100644 --- a/web/briskin5/index_wr.php +++ b/web/briskin5/index_wr.php @@ -48,7 +48,7 @@ log_load("bin5/index_wr.php"); log_wr('COMM: '.$mesg); $table_idx = (int)$table_idx; -if ($table_idx < 0 || $table_idx >= TABLE_N) +if ($table_idx < 0 || $table_idx >= TABLES_N) exit; log_wr(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg));