]> git.mxchange.org Git - friendica.git/commitdiff
fixed a bbcode issue with rich text html messages, fixed some issues with plain text.
authorChris Case <kahotep@bunda.dreamhost.com>
Mon, 14 Feb 2011 13:44:27 +0000 (05:44 -0800)
committerChris Case <kahotep@bunda.dreamhost.com>
Mon, 14 Feb 2011 13:44:27 +0000 (05:44 -0800)
mod/dfrn_notify.php

index ffd9020c5997942ebaa9c818f03e66b73748b0b1..7231e8fd2917b26f98645e27dd12f4793a6f9337 100644 (file)
@@ -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"), "<br />\n",html_entity_decode($msg['body']));
+                               = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "<br />\n",$msg['body']))));
                                                                
                        $tpl = load_view_file('view/mail_received_eml.tpl');                    
                        $email_tpl = replace_macros($tpl, array(