From 980b96707140b240f180a9b23e30a395cc63265f Mon Sep 17 00:00:00 2001 From: nathangray Date: Mon, 11 Jul 2016 13:07:59 -0600 Subject: [PATCH] Add missing new line between import warnings --- importexport/inc/class.importexport_import_ui.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importexport/inc/class.importexport_import_ui.inc.php b/importexport/inc/class.importexport_import_ui.inc.php index 4bae968964..839bca30f8 100644 --- a/importexport/inc/class.importexport_import_ui.inc.php +++ b/importexport/inc/class.importexport_import_ui.inc.php @@ -168,7 +168,7 @@ use EGroupware\Api\Etemplate; if(count($plugin->get_warnings())) { $this->message .= "
\n".lang('Warnings').':'; foreach($plugin->get_warnings() as $record => $message) { - $this->message .= "\n$record: $message"; + $this->message .= "
\n$record: $message"; } } if(count($plugin->get_errors())) {