From 86e2bfa05aa59244ccb107d443703600c56e79f3 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Thu, 18 Oct 2007 07:01:15 +0000 Subject: [PATCH] this locale string expects a numeric value, not a formated sting --- libraries/display_tbl.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 4b428baad..3419c12a3 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1872,7 +1872,7 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql) if (PMA_Table::isView($db, $table) && $total == $GLOBALS['cfg']['MaxExactCountViews']) { $message = PMA_Message::notice('strViewMaxExactCount'); - $message->addParam(PMA_formatNumber($GLOBALS['cfg']['MaxExactCountViews'], 0)); + $message->addParam($GLOBALS['cfg']['MaxExactCountViews']); $message->addParam('[a@./Documentation.html#cfg_MaxExactCount@_blank]'); $message->addParam('[/a]'); $message_view_warning = PMA_showHint($message);