From 6e1b2aa54b9a206d8980396348d96cef4f74ecd8 Mon Sep 17 00:00:00 2001 From: Dan Ungureanu Date: Sun, 2 Aug 2015 00:15:36 +0300 Subject: [PATCH] Fix #11340. Signed-off-by: Dan Ungureanu --- import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.php b/import.php index 6894f1778c..9fcfad58a3 100644 --- a/import.php +++ b/import.php @@ -638,7 +638,7 @@ if (! $error) { // Do the real import try { $default_fk_check = PMA_Util::handleDisableFKCheckInit(); - $import_plugin->doImport(); + $import_plugin->doImport($sql_data); PMA_Util::handleDisableFKCheckCleanup($default_fk_check); } catch (Exception $e) { PMA_Util::handleDisableFKCheckCleanup($default_fk_check);