From 297aec9ab163ea046451e1df3bccb9c920a5c80b Mon Sep 17 00:00:00 2001 From: Fenn-CS Date: Mon, 20 Mar 2017 17:54:11 +0100 Subject: [PATCH] Added definitions for result and message variable-update methods still missing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #12349 Signed-off-by: Fenn-CS Signed-off-by: Michal Čihař --- ChangeLog | 1 + import.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2c6ece691d..dc935eb5a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -106,6 +106,7 @@ phpMyAdmin - ChangeLog - issue #13092 Do not try to sync favorite tables if configuration storage is not enabled - issue #13105 Fixed changing attribute for virtual field - issue #12757 Fixed setting password on recent MariaDB with non working plugins +- issue #12349 Fixed undefined variable on import from some formats 4.6.6 (2017-01-23) - issue #12759 Fix Notice regarding 'Undefined index: old_usergroup' diff --git a/import.php b/import.php index 42d967dd90..7b6a415483 100644 --- a/import.php +++ b/import.php @@ -330,6 +330,8 @@ $run_query = true; $charset_conversion = false; $reset_charset = false; $bookmark_created = false; +$result = false; +$msg = 'Sorry an unexpected error happened!'; // Bookmark Support: get a query back from bookmark if required if (! empty($_REQUEST['id_bookmark'])) {