]> git.mxchange.org Git - friendica.git/commitdiff
Bugfix: Some special characters weren't converted correctly
authorMichael <heluecht@pirati.ca>
Thu, 13 Jul 2017 05:57:37 +0000 (05:57 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 13 Jul 2017 05:57:37 +0000 (05:57 +0000)
include/bb2diaspora.php

index 80ee1b50dcc0b505f338ee79f1257287ba023f5a..832dab7e8de38136841becdecbe5aa0569a248e5 100644 (file)
@@ -188,7 +188,7 @@ function bb2diaspora($Text, $preserve_nl = false, $fordiaspora = true) {
        $Text = $converter->convert($Text);
 
        // unmask the special chars back to HTML
-       $Text = str_replace(array('&_lt_;', '&_gt_;', '&_amp_;'), array('&lt;', '&gt;', '&amp;'), $Text);
+       $Text = str_replace(array('&\_lt\_;', '&\_gt\_;', '&\_amp\_;'), array('&lt;', '&gt;', '&amp;'), $Text);
 
        $a->save_timestamp($stamp1, "parser");