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 11:26:12 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 11:26:12 +0300
commitd862940cb397cd9e69bba4d356a2e6b7b12dc3ca (patch)
treef9c3a7acb26e6248f0ff6a75becc6ad2f9e7e639 /schema_export.php
parent95e7b6820a8cc6c8d7d1e69298d389d6b297d227 (diff)
Remove unused parameter $db
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'schema_export.php')
-rw-r--r--schema_export.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema_export.php b/schema_export.php
index 87eb060896..99f1d01f10 100644
--- a/schema_export.php
+++ b/schema_export.php
@@ -60,6 +60,7 @@ function PMA_processExportSchema($export_type)
$export_type = PMA_securePath($export_type);
// get the specific plugin
+ /* @var $export_plugin SchemaPlugin */
$export_plugin = PMA_getPlugin(
"schema",
$export_type,
@@ -72,5 +73,5 @@ function PMA_processExportSchema($export_type)
}
$GLOBALS['dbi']->selectDb($GLOBALS['db']);
- $export_plugin->exportSchema($GLOBALS['db']);
+ $export_plugin->exportSchema();
}