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:
authorJohn Homerstad <contact@SlashbackAssociates.com>2015-11-08 16:37:46 +0300
committerMarc Delisle <marc@infomarc.info>2015-11-08 16:37:46 +0300
commit711fab59d1be39d666e105eb67c4fa4f9917f213 (patch)
tree8cf6f75f904cc995d42859f449c8263eb481cc7c /export.php
parent5abebfccd8b81b9ab232e464ba16db974e6b04b6 (diff)
Fixes #11648 Notice in ./export.php#214 Undefined index: quick_or_custom
Signed-off-by: Marc Delisle <marc@infomarc.info>
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 2795cfc26e..b7942a34ac 100644
--- a/export.php
+++ b/export.php
@@ -211,7 +211,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;