X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=mod%2Fnoscrape.php;h=814dc885cd5498f20a071dab391ea5cd7d9349e4;hb=93fb98959a798cca0eb4709a38508b7e7b6d5b9e;hp=3d298cfe3961b436d710b4e3d897cf59b2fe793f;hpb=ad20c5504deba9dbb4ea5c5deba598f2c448b344;p=friendica.git diff --git a/mod/noscrape.php b/mod/noscrape.php index 3d298cfe39..814dc885cd 100644 --- a/mod/noscrape.php +++ b/mod/noscrape.php @@ -1,6 +1,8 @@ argc > 1) $which = $a->argv[1]; @@ -15,7 +17,7 @@ function noscrape_init(&$a) { profile_load($a,$which,$profile); - if (!$a->profile['net-publish'] OR $a->profile['hidewall']) { + if (!$a->profile['net-publish'] || $a->profile['hidewall']) { header('Content-type: application/json; charset=utf-8'); $json_info = array("hide" => true); echo json_encode($json_info); @@ -40,7 +42,7 @@ function noscrape_init(&$a) { 'tags' => $keywords ); - if (is_array($a->profile) AND !$a->profile['hide-friends']) { + if (is_array($a->profile) && !$a->profile['hide-friends']) { $r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1", intval($a->profile['uid'])); if (dbm::is_result($r)) {