diff --git a/export.php b/export.php index 420274b6d..5e3011c7a 100644 --- a/export.php +++ b/export.php @@ -673,9 +673,9 @@ else { * Displays a back button with all the $_REQUEST data in the URL */ // Convert the multiple select elements from an array to a string - if($export_type == 'server') { + if($export_type == 'server' && isset($_REQUEST['db_select'])) { $_REQUEST['db_select'] = implode(",", $_REQUEST['db_select']); - } elseif($export_type == 'database') { + } elseif($export_type == 'database' && isset($_REQUEST['table_select'])) { $_REQUEST['table_select'] = implode(",", $_REQUEST['table_select']); }