mirror of
https://github.com/friendica/friendica
synced 2025-04-25 23:10:12 +00:00
Fix various notices
This commit is contained in:
parent
607f7daf51
commit
b6e1571b1e
7 changed files with 17 additions and 17 deletions
|
@ -626,7 +626,7 @@ class BBCode extends BaseObject
|
|||
$data["title"] = $data["url"];
|
||||
}
|
||||
|
||||
if (($data["text"] == "") && ($data["title"] != "") && ($data["url"] == "")) {
|
||||
if (empty($data["text"]) && !empty($data["title"]) && empty($data["url"])) {
|
||||
return $data["title"] . $data["after"];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue