]> git.mxchange.org Git - friendica.git/commitdiff
Normalize line endings instead of adding <br> before Markdown()
authorHypolite Petovan <ben.lort@gmail.com>
Sun, 12 Mar 2017 07:55:22 +0000 (03:55 -0400)
committerHypolite Petovan <ben.lort@gmail.com>
Sun, 12 Mar 2017 07:55:22 +0000 (03:55 -0400)
include/bb2diaspora.php

index f18a0f3c276399cea0910a0e80df320577b85b03..e5099992366558b722c8c27fb635713bc24a4f6c 100644 (file)
@@ -39,9 +39,9 @@ function diaspora2bb($s) {
        $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
 
        // Handles single newlines
-       $s = str_replace("\r", '<br>', $s);
-
+       $s = str_replace("\r\n", "\n", $s);
        $s = str_replace("\n", " \n", $s);
+       $s = str_replace("\r", " \n", $s);
 
        // Replace lonely stars in lines not starting with it with literal stars
        $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);