From 1b96621d1b85fde434f3457e3354a371b885a637 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 11 May 2015 07:58:17 -0400 Subject: [PATCH] Missing title on link Signed-off-by: Marc Delisle --- ChangeLog | 1 + libraries/Header.class.php | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9575f48bdf..7bdb0a5f22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog - bug #4897 Column hint in SQL autocomplete is sometimes not shown - bug #4898 JS error after selecting a field and press Enter - bug Honor proxy settings when getting Git commit information +- bug Missing title on link 4.4.6.0 (2015-05-07) - bug #4890 webkitStorageInfo and webkitIndexedDB is deprecated diff --git a/libraries/Header.class.php b/libraries/Header.class.php index 064f6aa553..d7ca50b111 100644 --- a/libraries/Header.class.php +++ b/libraries/Header.class.php @@ -441,9 +441,11 @@ class PMA_Header $retval .= $this->_menu->getDisplay(); $retval .= ''; $retval .= sprintf( - '%s', - __('Click on the bar to scroll to top of page'), - PMA_Util::getImage('s_top.png') + '%s', + PMA_Util::getImage( + 's_top.png', + __('Click on the bar to scroll to top of page') + ) ); } $retval .= $this->_console->getDisplay();