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:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-07-20 15:48:24 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-11-11 01:48:58 +0300
commit9219b28f474f032621b3cc827d12407673e47b08 (patch)
treef3fd2b5d43fd8510e1467c2b27d28e798055b0c0 /tbl_export.php
parentb72e55acf82a67fcb9d8eb341878f8e9fc7af295 (diff)
Retrieve parameters from $_POST in table structure
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_export.php b/tbl_export.php
index cd76f97b75..de533e8324 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -29,7 +29,7 @@ $cfgRelation = $relation->getRelationsParam();
$displayExport = new Export();
// handling export template actions
-if (isset($_REQUEST['templateAction']) && $cfgRelation['exporttemplateswork']) {
+if (isset($_POST['templateAction']) && $cfgRelation['exporttemplateswork']) {
$displayExport->handleTemplateActions($cfgRelation);
exit;
}