diff --git a/ChangeLog b/ChangeLog index 7cc924ff2e..abaa266826 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18,6 +18,7 @@ phpMyAdmin - ChangeLog - issue #13150 Fixed pagination while browsing resuls - issue #13149 Fixed outbound links in changelog.php - issue #13146 Do not include devel dependencies in the release +- issue #13144 Do not show New as a database in database dropdown 4.7.0 (2017-03-28) - patch #12233 [Display] Improve message when renaming database to same name diff --git a/libraries/navigation/NavigationTree.php b/libraries/navigation/NavigationTree.php index 50e65c99bb..5db11df455 100644 --- a/libraries/navigation/NavigationTree.php +++ b/libraries/navigation/NavigationTree.php @@ -1274,6 +1274,9 @@ class NavigationTree . '(' . __('Databases') . ') ...' . "\n"; $selected = $GLOBALS['db']; foreach ($children as $node) { + if ($node->isNew) { + continue; + } $paths = $node->getPaths(); if (isset($node->links['text'])) { $title = empty($node->links['title']) ? '' : $node->links['title'];