From ac82ba0f45cf8dba05f5a452f1cd006cddcdbdda Mon Sep 17 00:00:00 2001 From: Chanaka Indrajith Dharmarathna Date: Wed, 4 Apr 2012 21:08:35 +0100 Subject: [PATCH] Fixed bug #3512565 - Missing word Rows in table list tooltip after click --- ChangeLog | 1 + libraries/Table.class.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 94d6d833fe75..579db3d0a122 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 3.4.11.0 (not yet released) - bug #3486970 [import] Exception on XML import - bug #3488777 [navi] $cfg['ShowTooltipAliasTB'] and blank names in navigation +- bug #3512565 [navi] Fixed missing word "Rows" in table list tooltip after click 3.4.10.2 (2012-03-28) - [security] Fixed local path disclosure vulnerability, see PMASA-2012-2 diff --git a/libraries/Table.class.php b/libraries/Table.class.php index 767cf64da76e..168ff39958b4 100644 --- a/libraries/Table.class.php +++ b/libraries/Table.class.php @@ -265,7 +265,7 @@ static public function isMerge($db = null, $table = null) static public function sGetToolTip($db, $table) { return PMA_Table::sGetStatusInfo($db, $table, 'Comment') - . ' (' . PMA_Table::countRecords($db, $table) . ')'; + . ' (' . PMA_Table::countRecords($db, $table) . ' ' . __('Rows') . ')'; } /**