this locale string expects a numeric value, not a formated sting

This commit is contained in:
Sebastian Mendel
2007-10-18 07:01:15 +00:00
parent 9bc8980857
commit 86e2bfa05a

View File

@@ -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);