Fix NoScrape SQL

This commit is contained in:
Philipp Holzer 2020-01-27 23:28:38 +01:00
parent 70f688e8dd
commit c4d309f801
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ class NoScrape extends BaseModule
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` = %d LIMIT 1", $a->profile['uid']);
$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']));
}