From 003ede0c61103fd59f8d3862e7a0a08f4f8eb1a5 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 5 Feb 2014 10:20:40 -0500 Subject: [PATCH] Avoid undefined variable notices Signed-off-by: Marc Delisle --- export.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/export.php b/export.php index 37edf065cd..79142b4703 100644 --- a/export.php +++ b/export.php @@ -391,6 +391,12 @@ if (!defined('TESTSUITE')) { if (! isset($allrows)) { $allrows = ''; } + if (! isset($limit_to)) { + $limit_to = 0; + } + if (! isset($limit_from)) { + $limit_from = 0; + } PMA_exportTable( $db, $table, $whatStrucOrData, $export_plugin, $crlf, $err_url, $export_type, $do_relation, $do_comments, $do_mime, $do_dates,