diff --git a/ChangeLog b/ChangeLog index 6391683fe..2c88e1f32 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2006-01-30 Marc Delisle + * libraries/common.lib.php: bug #1418145, missing global, + thanks to Bananeweizen + 2006-01-29 Marc Delisle * lang/estonian updates, thanks to Marko Ellermaa - uhuu * lang/polish: updates, thanks to Jakub Wilk - ubanus diff --git a/libraries/common.lib.php b/libraries/common.lib.php index a483298ab..4074a564a 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -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 ' ' . sprintf($strViewMaxExactCount, $cfg['MaxExactCount'], '[a@./Documentation.html#cfg_MaxExactCount@_blank]', '[/a]'); + echo ' ' . sprintf($GLOBALS['strViewMaxExactCount'], $cfg['MaxExactCount'], '[a@./Documentation.html#cfg_MaxExactCount@_blank]', '[/a]'); } return true; }