From 01e28c6355e9b29299b7a8f9815a1957b218058e Mon Sep 17 00:00:00 2001 From: Hugues Peccatte Date: Sat, 19 Jul 2014 21:16:37 +0200 Subject: [PATCH] Fix #4427: action icons not in horizontal order Signed-off-by: Hugues Peccatte --- ChangeLog | 1 + libraries/display_structure.inc.php | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) 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'; }