diff --git a/ChangeLog b/ChangeLog index cd175d662d..991ddefe37 100644 --- a/ChangeLog +++ b/ChangeLog @@ -27,6 +27,7 @@ phpMyAdmin - ChangeLog - bug #4712 Wrongly positioned date-picker while Grid-Editing - bug #4714 Forced ORDER BY for own sql statements - bug #4721 Undefined property: stdClass::$version +- bug #4719 'only_db' not working 4.3.7.0 (2015-01-15) - bug #4694 js error on marking table as favorite in Safari (in private mode) diff --git a/js/navigation.js b/js/navigation.js index f994951840..0152d6766d 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -435,11 +435,7 @@ $(function () { var storage = window.sessionStorage; // remove tree from storage if Navi_panel config form is submitted $(document).on('submit', 'form.config-form', function(event) { - if ($(this).attr('action').indexOf('form=Navi_panel') >= 0 || - $(this).attr('action').indexOf('form=Main_panel') >= 0 - ) { - storage.removeItem('navTree'); - } + storage.removeItem('navTree'); }); // Initialize if no previous state is defined if (typeof storage.navTree === 'undefined') {