From 1ad8f3a90fa4473c901b4918be08e279ea2cc18a Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Fri, 10 Apr 2015 23:50:10 +0000 Subject: [PATCH] Do not clear warnings and errors just because plugin can't add more --- importexport/inc/class.importexport_schedule_ui.inc.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/importexport/inc/class.importexport_schedule_ui.inc.php b/importexport/inc/class.importexport_schedule_ui.inc.php index 4b9165735b..bf22ebb107 100644 --- a/importexport/inc/class.importexport_schedule_ui.inc.php +++ b/importexport/inc/class.importexport_schedule_ui.inc.php @@ -526,8 +526,6 @@ $buffer += "$record\t$msg\n"; } error_log($buffer); - } else { - unset($data['warnings'][$target]); } if(method_exists($po, 'get_errors') && $po->get_errors()) { $buffer = 'importexport_schedule: ' . date('c') . ": Import errors:\n#\tError\n"; @@ -536,8 +534,6 @@ $buffer += "$record\t$error\n"; } error_log($buffer); - } else { - unset($data['errors'][$target]); } if($po instanceof importexport_iface_import_plugin) {