diff --git a/ChangeLog b/ChangeLog index 45add24a09..543efd74e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.2.7.0 (not yet released) - bug Broken links on home page - bug #4494 Overlap in navigation panel +- bug #4427 Action icons not in horizontal order 4.2.6.0 (2014-07-17) - bug #4471 Undefined index warning with referenced column. diff --git a/libraries/display_structure.inc.php b/libraries/display_structure.inc.php index 50387d8096..28cc78ee91 100644 --- a/libraries/display_structure.inc.php +++ b/libraries/display_structure.inc.php @@ -21,9 +21,7 @@ if (! defined('PHPMYADMIN')) { $HideStructureActions = ''; -if (PMA_Util::showText('ActionLinksMode') - && $GLOBALS['cfg']['HideStructureActions'] === true -) { +if ($GLOBALS['cfg']['HideStructureActions'] === true) { $HideStructureActions .= ' HideStructureActions'; }