From 68cb91ee422aa1af2138ef91cacc21ea1f730a67 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sat, 4 Apr 2015 14:25:19 +0530 Subject: [PATCH] Tries to fix bug#4837 Signed-off-by: Deven Bansod --- js/functions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index c65d8e93dd..9e49f2cf9f 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 + ')';