Merge pull request #1293 from Tithugues/b4427_42

Fix #4427: action icons not in horizontal order
This commit is contained in:
Hugues Peccatte 2014-07-21 07:36:57 +02:00
commit 18a6509f4b
2 changed files with 2 additions and 3 deletions

View File

@ -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.

View File

@ -21,9 +21,7 @@ if (! defined('PHPMYADMIN')) {
$HideStructureActions = '';
if (PMA_Util::showText('ActionLinksMode')
&& $GLOBALS['cfg']['HideStructureActions'] === true
) {
if ($GLOBALS['cfg']['HideStructureActions'] === true) {
$HideStructureActions .= ' HideStructureActions';
}