Hashtags in attached link description now don't create misformatted text anymore.

This commit is contained in:
Michael Vogel 2015-01-02 01:43:31 +01:00
parent 8c8ffdf999
commit bf147ca9d9
1 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,9 @@ function bb_attachment($Text, $plaintext = false, $tryoembed = true) {
if ($matches[1] != "")
$title = $matches[1];
$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false);
//$title = htmlentities($title, ENT_QUOTES, 'UTF-8', false);
$title = bbcode(html_entity_decode($title), false, false, true);
$title = str_replace(array("[", "]"), array("[", "]"), $title);
$image = "";
if ($type != "video") {
@ -1171,6 +1173,6 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
$a->save_timestamp($stamp1, "parser");
return $Text;
return trim($Text);
}
?>