Bugfix: Some special characters weren't converted correctly

This commit is contained in:
Michael 2017-07-13 05:57:37 +00:00
parent c54b7e84ab
commit beaa911bac
1 changed files with 1 additions and 1 deletions

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");