Merge pull request #3581 from annando/bugfix-markdown

Bugfix: Some special characters weren't converted correctly
This commit is contained in:
Tobias Diekershoff 2017-07-13 08:29:04 +02:00 committed by GitHub
commit e33a710d45

View 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('<', '>', '&'), $Text);
$Text = str_replace(array('&\_lt\_;', '&\_gt\_;', '&\_amp\_;'), array('<', '>', '&'), $Text);
$a->save_timestamp($stamp1, "parser");