From: Chris Case Date: Mon, 14 Feb 2011 13:44:27 +0000 (-0800) Subject: fixed a bbcode issue with rich text html messages, fixed some issues with plain text. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=42eb6dd723abd31aaaf6c1608f2dec645f4e20b5;p=friendica.git fixed a bbcode issue with rich text html messages, fixed some issues with plain text. --- diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index ffd9020c59..7231e8fd29 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -198,10 +198,10 @@ function dfrn_notify_post(&$a) { $msg['textversion'] - = html_entity_decode(strip_tags(bbcode(stripslashes($msg['body']))),ENT_QUOTES,'UTF-8'); + = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n",$msg['body']))),ENT_QUOTES,'UTF-8')); //$TextMessage = html_entity_decode(strip_tags(bbcode(str_replace(array("\\r\\n", "\\r", "\\n"), "\n",$msg['body'])))); ; $msg['htmlversion'] - = str_replace(array("\\r\\n", "\\r", "\\n"), "
\n",html_entity_decode($msg['body'])); + = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "
\n",$msg['body'])))); $tpl = load_view_file('view/mail_received_eml.tpl'); $email_tpl = replace_macros($tpl, array(