diff --git a/include/bbcode.php b/include/bbcode.php index 70cd22d5f9..62ee4da90c 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -101,7 +101,10 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false) if ($nolink) return $data["text"].$data["after"]; - if ($plaintext) + $title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false); + $text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false); + + if ($plaintext or strstr($text, $title)) $data["title"] = $data["url"]; if (($data["text"] == "") AND ($data["title"] != "") AND ($data["url"] == "")) @@ -115,10 +118,10 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false) if (($data["url"] != "") AND ($data["title"] != "")) $text .= "\n[url=".$data["url"]."]".$data["title"]."[/url]"; - elseif (($link != "")) + elseif (($data["url"] != "")) $text .= "\n".$data["url"]; - return $text.$data["after"]; + return $text."\n".$data["after"]; } function bb_cleanstyle($st) {