From c6b4eb0da708bdfb4fe4ee015cd1f52bc03481f8 Mon Sep 17 00:00:00 2001 From: VESSILLER Date: Wed, 13 Sep 2023 08:12:01 +0200 Subject: [PATCH] Fix br syntax --- htdocs/webportal/public/tpl/footer.tpl.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/webportal/public/tpl/footer.tpl.php b/htdocs/webportal/public/tpl/footer.tpl.php index b139071a574..7604e0d8076 100644 --- a/htdocs/webportal/public/tpl/footer.tpl.php +++ b/htdocs/webportal/public/tpl/footer.tpl.php @@ -28,7 +28,7 @@ if (!empty($context->eventMessages['mesgs'])) { $msgNum = 0; foreach ($context->eventMessages['mesgs'] as $mesg) { if ($msgNum > 0) { - $htmlSuccess .= '
'; + $htmlSuccess .= '
'; } $htmlSuccess .= $langs->trans($mesg); $msgNum++; @@ -48,7 +48,7 @@ if (!empty($context->eventMessages['warnings'])) { $msgNum = 0; foreach ($context->eventMessages['warnings'] as $mesg) { if ($msgNum > 0) { - $htmlWarning .= '
'; + $htmlWarning .= '
'; } $htmlWarning .= $langs->trans($mesg); $msgNum++; @@ -64,7 +64,7 @@ if (!empty($context->eventMessages['errors'])) { $msgNum = 0; foreach ($context->eventMessages['errors'] as $mesg) { if ($msgNum > 0) { - $htmlError .= '
'; + $htmlError .= '
'; } $htmlError .= $langs->trans($mesg); $msgNum++;