From 32ee16621f45b39e5b2b93798d78d70791e5ab64 Mon Sep 17 00:00:00 2001 From: horus Date: Sat, 19 Sep 2020 20:45:30 +0200 Subject: bugfix --- app/helpers.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app/helpers.php') diff --git a/app/helpers.php b/app/helpers.php index c96b972..c2c6b16 100644 --- a/app/helpers.php +++ b/app/helpers.php @@ -3,11 +3,15 @@ use Carbon\Carbon; function replaceSpecialChars($string) { $string = str_replace("<i>", "", $string); + $string = str_replace("<I>", "", $string); $string = str_replace("</i>", "", $string); + $string = str_replace("</I>", "", $string); $string = str_replace("<b>", "", $string); $string = str_replace("</b>", "", $string); $string = str_replace("<br>", "
", $string); + $string = str_replace("<BR>", "
", $string); $string = str_replace("%%br%%", "
", $string); + $string = str_replace("%%BR%%", "
", $string); return $string; } -- cgit v1.2.3