From 39b7e78ebf3db1fcb3965675be9332435778e57f Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sun, 4 Dec 2011 11:26:40 +0100 Subject: [PATCH] fixed silent error in briskin5/index_wr.php and corrected version --- web/Obj/brisk.phh | 2 +- web/briskin5/index_wr.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)); -- 2.17.1