diff --git a/ChangeLog b/ChangeLog index 813d8e1592..3d35a4b8c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -64,6 +64,7 @@ phpMyAdmin - ChangeLog - bug #4937 Custom export with backquotes off is not working - bug #4908 Reverse proxy: infinite internal redirect (added warning in doc) - bug #4942 Export to gzip saves plain text under Chrome +- bug #4950 Issues in database selection for replication 4.4.8.0 (2015-05-28) - bug Allow accessing visual query builder when pmadb is not configured diff --git a/js/replication.js b/js/replication.js index 888bd9ddf8..d9dbf15dcf 100644 --- a/js/replication.js +++ b/js/replication.js @@ -68,5 +68,6 @@ AJAX.registerOnload('replication.js', function () { }); $('#db_reset_href').click(function () { $('#db_select option:selected').prop('selected', false); + $('#db_select').trigger('change'); }); });