]> git.mxchange.org Git - friendica.git/blobdiff - mod/noscrape.php
Merge pull request #3613 from annando/some-ostatus
[friendica.git] / mod / noscrape.php
index e9655f20bfcfb39ccfeaade7eb48fde91ed1fa07..814dc885cd5498f20a071dab391ea5cd7d9349e4 100644 (file)
@@ -1,22 +1,23 @@
 <?php
 
+use Friendica\App;
+
 function noscrape_init(App $a) {
 
-       if ($a->argc > 1) {
+       if($a->argc > 1)
                $which = $a->argv[1];
-       } else {
+       else
                killme();
-       }
 
        $profile = 0;
-       if ((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
+       if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
                $which = $a->user['nickname'];
                $profile = $a->argv[1];
        }
 
        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);
@@ -41,7 +42,7 @@ function noscrape_init(App $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)) {