mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
Replace and/AND and or/OR by && and ||
This commit is contained in:
parent
844de15593
commit
8fa3f2415a
23 changed files with 268 additions and 269 deletions
|
@ -86,7 +86,7 @@ function leistungsschutzrecht_fetchsites() {
|
|||
if (isset($attr["href"])) {
|
||||
$urldata = parse_url($attr["href"]);
|
||||
|
||||
if (isset($urldata["host"]) AND !isset($urldata["path"])) {
|
||||
if (isset($urldata["host"]) && !isset($urldata["path"])) {
|
||||
$cleanedurlpart = explode("%", $urldata["host"]);
|
||||
|
||||
$hostname = explode(".", $cleanedurlpart[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue