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>2015-11-08 16:39:26 +0300
committerMarc Delisle <marc@infomarc.info>2015-11-08 16:39:26 +0300
commitc3720ce8bff622a23ac1164f86028ab2885afff0 (patch)
treed8507dc99fd5a126a202bfecd41983a11e1af43c /export.php
parentc12b63938be0740f585b65410298af8855a10f2d (diff)
parent0065a028540b35352429dcb88cd814146c4ec169 (diff)
Merge branch 'QA_4_5'
Diffstat (limited to 'export.php')
-rw-r--r--export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/export.php b/export.php
index a14db857fe..a0f44ffac5 100644
--- a/export.php
+++ b/export.php
@@ -212,7 +212,7 @@ if (!defined('TESTSUITE')) {
$separate_files = '';
// Is it a quick or custom export?
- if ($_REQUEST['quick_or_custom'] == 'quick') {
+ if (isset($_REQUEST['quick_or_custom']) && $_REQUEST['quick_or_custom'] == 'quick') {
$quick_export = true;
} else {
$quick_export = false;