From 9918aa2a495f764fe4e227f04daff62ca59419d5 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Mon, 10 Dec 2012 18:52:07 +0100 Subject: [PATCH] multoval added to show info correctly --- web/briskin5/Obj/briskin5.phh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index daf02b3..89445ce 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -1690,7 +1690,7 @@ function show_table_info(&$bri, &$table, $table_pos) } $old_multer = $table->multer(FALSE); if ($old_multer > 1) { - $noty .= sprintf($mlang_bin5_bin5['info_omul'][$G_lang], $old_multer); + $noty .= sprintf($mlang_bin5_bin5['info_omul'][$G_lang], multoval($old_multer)); } $noty .= "

"; } @@ -1723,7 +1723,7 @@ function show_table_info(&$bri, &$table, $table_pos) $multer = $table->multer(TRUE); if ($multer > 1) { - $noty .= sprintf($mlang_bin5_bin5['info_mult'][$G_lang], $multer ); + $noty .= sprintf($mlang_bin5_bin5['info_mult'][$G_lang], multoval($multer) ); } $noty .= "

"; $ret .= show_notify($noty, 3000, $mlang_bin5_bin5['btn_bkgame'][$G_lang], 500, 400); -- 2.17.1