From 711fab59d1be39d666e105eb67c4fa4f9917f213 Mon Sep 17 00:00:00 2001 From: John Homerstad Date: Sun, 8 Nov 2015 05:37:46 -0800 Subject: [PATCH 1/2] Fixes #11648 Notice in ./export.php#214 Undefined index: quick_or_custom Signed-off-by: Marc Delisle --- export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 0065a028540b35352429dcb88cd814146c4ec169 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 8 Nov 2015 05:38:24 -0800 Subject: [PATCH 2/2] ChangeLog entry Signed-off-by: Marc Delisle --- ChangeLog | 1 + 1 file changed, 1 insertion(+) diff --git a/ChangeLog b/ChangeLog index 8a61e7353c..e4ec259885 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,7 @@ phpMyAdmin - ChangeLog - issue #11639 Bug with the MainBackground Color - issue Profiling checkbox is missing - issue #11642 Properly handle session expiry after POST requests +- issue #11648 Notice in ./export.php#214 Undefined index: quick_or_custom 4.5.1.0 (2015-10-23) - issue Invalid argument supplied for foreach()