mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Avoid warning messages at "strstr"
This commit is contained in:
parent
167a8998d6
commit
1aa3aa21b3
1 changed files with 2 additions and 2 deletions
|
@ -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"];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue