From 4a470bb1424b7a244c6a99f89d654fb56262891b Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 30 Jan 2006 22:53:44 +0000 Subject: [PATCH] bug #1418145, missing global --- ChangeLog | 4 ++++ libraries/common.lib.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; }