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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 12:52:32 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 12:52:32 +0300
commit365d98d4c6b19f9289161bbd9471d9f0bf542c95 (patch)
tree3f6c966eb184747c93f57127dcc11e6d738aae08 /schema_export.php
parent6d8bceea8af031e429e07141d2991844cdabcb35 (diff)
Revert "Remove unused parameter $db"
This reverts commit d862940cb397cd9e69bba4d356a2e6b7b12dc3ca.
Diffstat (limited to 'schema_export.php')
-rw-r--r--schema_export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema_export.php b/schema_export.php
index ed468706ff..ec1c4e0b54 100644
--- a/schema_export.php
+++ b/schema_export.php
@@ -62,5 +62,5 @@ function PMA_processExportSchema($export_type)
}
$GLOBALS['dbi']->selectDb($GLOBALS['db']);
- $export_plugin->exportSchema();
+ $export_plugin->exportSchema($GLOBALS['db']);
}