diff --git a/include/bbcode.php b/include/bbcode.php index c5c93ca64e..bc30767770 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -103,9 +103,9 @@ function bb_remove_share_information($Text, $plaintext = false, $nolink = false) $title = htmlentities($data["title"], ENT_QUOTES, 'UTF-8', false); $text = htmlentities($data["text"], ENT_QUOTES, 'UTF-8', false); - if ($plaintext or strstr($text, $title)) + if ($plaintext OR (($title != "") AND strstr($text, $title))) $data["title"] = $data["url"]; - elseif (strstr($title, $text)) { + elseif (($text != "") AND strstr($title, $text)) { $data["text"] = $data["title"]; $data["title"] = $data["url"]; }