diff --git a/ChangeLog b/ChangeLog
index 8ed62e246e..1443230f37 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -39,6 +39,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 4064a235c1..4fba67cc55 100644
--- a/libraries/Header.class.php
+++ b/libraries/Header.class.php
@@ -445,9 +445,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();