Fixed bug #3512565 - Missing word Rows in table list tooltip after click

This commit is contained in:
Chanaka Indrajith Dharmarathna
2012-04-04 21:08:35 +01:00
committed by Rouslan Placella
parent c4a1ffa45a
commit ac82ba0f45
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog
3.4.11.0 (not yet released) 3.4.11.0 (not yet released)
- bug #3486970 [import] Exception on XML import - bug #3486970 [import] Exception on XML import
- bug #3488777 [navi] $cfg['ShowTooltipAliasTB'] and blank names in navigation - 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) 3.4.10.2 (2012-03-28)
- [security] Fixed local path disclosure vulnerability, see PMASA-2012-2 - [security] Fixed local path disclosure vulnerability, see PMASA-2012-2

View File

@@ -265,7 +265,7 @@ class PMA_Table
static public function sGetToolTip($db, $table) static public function sGetToolTip($db, $table)
{ {
return PMA_Table::sGetStatusInfo($db, $table, 'Comment') return PMA_Table::sGetStatusInfo($db, $table, 'Comment')
. ' (' . PMA_Table::countRecords($db, $table) . ')'; . ' (' . PMA_Table::countRecords($db, $table) . ' ' . __('Rows') . ')';
} }
/** /**