From 6ec9cf42b87da9da72d2fe42822d6055cf368144 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Wed, 1 Aug 2012 17:46:42 +0200 Subject: [PATCH] Fixed display of confirmation message after dropping db --- js/functions.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/functions.js b/js/functions.js index 9277cabcaf..f19a65e3a1 100644 --- a/js/functions.js +++ b/js/functions.js @@ -2150,7 +2150,9 @@ AJAX.registerOnload('functions.js', function() { //Database deleted successfully, refresh both the frames PMA_reloadNavigation(); PMA_commonParams.set('db', ''); - PMA_commonActions.refreshMain('index.php'); + PMA_commonActions.refreshMain('index.php', function () { + PMA_ajaxShowMessage(data.message); + }); }); }); });