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:
Diffstat (limited to 'schema_export.php')
-rw-r--r--schema_export.php13
1 files changed, 1 insertions, 12 deletions
diff --git a/schema_export.php b/schema_export.php
index 99f1d01f10..ed468706ff 100644
--- a/schema_export.php
+++ b/schema_export.php
@@ -23,20 +23,9 @@ require_once 'libraries/pmd_common.php';
require_once 'libraries/plugin_interface.lib.php';
/**
- * get all the export options and verify
- * call and include the appropriate Schema Class depending on $export_type
+ * Include the appropriate Schema Class depending on $export_type
* default is PDF
*/
-
-$post_params = array(
- 'db'
-);
-foreach ($post_params as $one_post_param) {
- if (isset($_REQUEST[$one_post_param])) {
- $GLOBALS[$one_post_param] = $_REQUEST[$one_post_param];
- }
-}
-
PMA_processExportSchema($_REQUEST['export_type']);
/**