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:
authorPiotr Przybylski <piotrprz@gmail.com>2011-08-24 00:37:24 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-08-24 00:37:24 +0400
commit4cf5fe79978bb4bbddfc0002c83926cead658587 (patch)
tree8fb651724c4ae715f7d663ac2952ccf3919e4801 /server_synchronize.php
parent92be06e6e9bb573addad7a2fcf49ed36e1f4e035 (diff)
Exclude data_dictionary from server synchronize (Drizzle)
Diffstat (limited to 'server_synchronize.php')
-rw-r--r--server_synchronize.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/server_synchronize.php b/server_synchronize.php
index 3e7db692c5..8057f892b4 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1274,6 +1274,9 @@ if (! isset($_REQUEST['submit_connect'])
// these unset() do not complain if the elements do not exist
unset($databases['mysql']);
unset($databases['information_schema']);
+ if (PMA_DRIZZLE) {
+ unset($databases['data_dictionary']);
+ }
if (count($databases) == 0) {
echo __('No databases');