Add missing new line between import warnings

This commit is contained in:
nathangray 2016-07-11 13:07:59 -06:00
parent 791d1f1d74
commit 980b967071

View File

@ -168,7 +168,7 @@ use EGroupware\Api\Etemplate;
if(count($plugin->get_warnings())) { if(count($plugin->get_warnings())) {
$this->message .= "<br />\n".lang('Warnings').':'; $this->message .= "<br />\n".lang('Warnings').':';
foreach($plugin->get_warnings() as $record => $message) { foreach($plugin->get_warnings() as $record => $message) {
$this->message .= "\n$record: $message"; $this->message .= "<br />\n$record: $message";
} }
} }
if(count($plugin->get_errors())) { if(count($plugin->get_errors())) {