From e21e4c71275aaeb61c5a8ddb7ac5f179b4081cd3 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 9 Feb 2024 07:33:13 +0000 Subject: let's try this --- include/html2bbcode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 61d530e7d..c1c1f972f 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -193,7 +193,7 @@ function html2bbcode($message) node2bbcode($doc, 'blockquote', array(), '[quote]', '[/quote]'); // Use a temporary tag to keep line breaks - node2bbcode($doc, 'br', array(), '[br]', ''); + node2bbcode($doc, 'br', array(), '[br] ', ''); node2bbcode($doc, 'a', array('href'=>'/(.+)/'), '[url=$1]', '[/url]'); @@ -304,7 +304,7 @@ function html2bbcode($message) array('[b]', '[/b]', '[i]', '[/i]'), $message); // Restore linebreaks from temp tag - $message = str_replace('[br]', "\n", $message); + $message = str_replace('[br] ', "\n", $message); // Handling Yahoo style of mails // $message = str_replace('[hr][b]From:[/b]', '[quote][b]From:[/b]', $message); -- cgit v1.2.3