X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FNoScrape.php;h=53b3fc4e3ee63b812cb61af32584b3a1ea79a756;hb=52789f3ae4a07b79fabc99ab01386617fa75183f;hp=c8b701e403fd7db2a5070a77bd2b3c0d619e4efe;hpb=a7dd0173a735291bee4d57bb3d9adcf064feb34d;p=friendica.git diff --git a/src/Module/NoScrape.php b/src/Module/NoScrape.php index c8b701e403..53b3fc4e3e 100644 --- a/src/Module/NoScrape.php +++ b/src/Module/NoScrape.php @@ -33,7 +33,7 @@ class NoScrape extends BaseModule exit(); } - Profile::load($a, $nickname); + Profile::load($a, $which); $json_info = [ 'addr' => $a->profile['addr'], @@ -67,11 +67,20 @@ class NoScrape extends BaseModule $json_info['language'] = $a->profile['language']; if (!($a->profile['hide-friends'] ?? false)) { - /// @todo What should this value tell us? - $result = DBA::p("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = ? LIMIT 1", intval($a->profile['uid'])); - if (DBA::isResult($result)) { - $json_info["updated"] = date("c", strtotime($result[0]['updated'])); + $stmt = DBA::p( + "SELECT `gcontact`.`updated` + FROM `contact` + INNER JOIN `gcontact` + WHERE `gcontact`.`nurl` = `contact`.`nurl` + AND `self` + AND `uid` = ? + LIMIT 1", + intval($a->profile['uid']) + ); + if ($gcontact = DBA::fetch($stmt)) { + $json_info["updated"] = date("c", strtotime($gcontact['updated'])); } + DBA::close($stmt); $json_info['contacts'] = DBA::count('contact', [ @@ -103,7 +112,7 @@ class NoScrape extends BaseModule $json_info['last-activity'] = date('o-W', $last_active); //These are optional fields. - $profile_fields = ['pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about']; + $profile_fields = ['pdesc', 'locality', 'region', 'postal-code', 'country-name']; foreach ($profile_fields as $field) { if (!empty($a->profile[$field])) { $json_info["$field"] = $a->profile[$field];