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:43:12 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-06-18 11:43:12 +0300
commit6d8bceea8af031e429e07141d2991844cdabcb35 (patch)
tree74371c7fe0a5786f69239ddf6450f9db75cfb420
parenta3c3c5726143028f97ff51e68a999409bdcf1369 (diff)
POST parameter 'db' is already written to GLOBALS in libraries/common.inc.php
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
-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']);
/**