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:
authorMarc Delisle <marc@infomarc.info>2013-08-01 16:41:59 +0400
committerMarc Delisle <marc@infomarc.info>2013-08-01 16:41:59 +0400
commitbfcaffe03b3589c364368c6d119267749fb3c3bc (patch)
tree4911f8dd69e6968a7cc07138c79a687ad660df99 /db_export.php
parent5a34172c898c4003bfe59c06289a4bc5ab278944 (diff)
Directly use POST parameters
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/db_export.php b/db_export.php
index 1b86a328c1..f051a21b2d 100644
--- a/db_export.php
+++ b/db_export.php
@@ -48,8 +48,9 @@ $multi_values .= '</a><br />';
$multi_values .= '<select name="table_select[]" id="table_select" size="10" multiple="multiple">';
$multi_values .= "\n";
-if (!empty($selected_tbl) && empty($table_select)) {
- $table_select = $selected_tbl;
+// when called by libraries/mult_submits.inc.php
+if (!empty($_POST['selected_tbl']) && empty($table_select)) {
+ $table_select = $_POST['selected_tbl'];
}
// Check if the selected tables are defined in $_GET