bug #1418145, missing global

This commit is contained in:
Marc Delisle
2006-01-30 22:53:44 +00:00
parent 6e97266cd7
commit 4a470bb142
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2006-01-30 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: bug #1418145, missing global,
thanks to Bananeweizen
2006-01-29 Marc Delisle <lem9@users.sourceforge.net>
* lang/estonian updates, thanks to Marko Ellermaa - uhuu
* lang/polish: updates, thanks to Jakub Wilk - ubanus

View File

@@ -1323,7 +1323,7 @@ if (!defined('PMA_MINIMUM_COMMON')) {
// PMA_countRecords() in display mode.
echo number_format($num, 0, $GLOBALS['number_decimal_separator'], $GLOBALS['number_thousands_separator']);
if ($tbl_is_view) {
echo '&nbsp;' . sprintf($strViewMaxExactCount, $cfg['MaxExactCount'], '[a@./Documentation.html#cfg_MaxExactCount@_blank]', '[/a]');
echo '&nbsp;' . sprintf($GLOBALS['strViewMaxExactCount'], $cfg['MaxExactCount'], '[a@./Documentation.html#cfg_MaxExactCount@_blank]', '[/a]');
}
return true;
}