diff --git a/ChangeLog b/ChangeLog index c353746db2..27702d582f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,7 @@ phpMyAdmin - ChangeLog 4.4.2.0 (not yet released) - bug #4835 PMA_hideShowConnection not called after submit_num_fields - bug #4836 Server warning after moving from console to direct clicks +- bug #4837 Duplicate new version notification when using the "Back" button 4.4.1.0 (not yet released) - bug #4813 MySQL 5.7.6 and the Users menu tab diff --git a/js/functions.js b/js/functions.js index bfd93ae74d..6020bc2f06 100644 --- a/js/functions.js +++ b/js/functions.js @@ -276,7 +276,8 @@ function PMA_current_version(data) /* Security update */ htmlClass = 'error'; } - $('#maincontainer').after('
' + message + '
'); + $('#newer_version_notice').remove(); + $('#maincontainer').after('
' + message + '
'); } if (latest === current) { version_information_message = ' (' + PMA_messages.strUpToDate + ')';