Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2011-01-24 14:20:26 +0300
committerMarc Delisle <marc@infomarc.info>2011-01-24 14:20:26 +0300
commit251ecae49d17dafbccd802c1e004b8e8adffd01f (patch)
tree27e921ff9940144bf31d2188c433fd60ace414ae /js/db_operations.js
parentdec8229eaeb6ce91db2886f2842c4eb2458acaa7 (diff)
Bug #3163256 Ajax copy database does not refresh the database list in case the "switch to copied database" option is not ticked
Diffstat (limited to 'js/db_operations.js')
-rw-r--r--js/db_operations.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/db_operations.js b/js/db_operations.js
index 0f9240a44a..12b17c1688 100644
--- a/js/db_operations.js
+++ b/js/db_operations.js
@@ -100,6 +100,11 @@ $(document).ready(function() {
window.parent.db = data.newname;
window.parent.refreshMain();
window.parent.refreshNavigation();
+ } else {
+ // Here we force a refresh because the navigation
+ // frame url is not changing so this function would
+ // not refresh it
+ window.parent.refreshNavigation(true);
}
}
else {