Merge pull request #8183 from nupplaphil/bug/fix_noscrape_sql

Fix NoScrape SQL
This commit is contained in:
Hypolite Petovan 2020-01-27 16:50:41 -05:00 committed by GitHub
commit 574fd57880
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ class NoScrape extends BaseModule
if (!($a->profile['hide-friends'] ?? false)) { if (!($a->profile['hide-friends'] ?? false)) {
/// @todo What should this value tell us? /// @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)) { if (DBA::isResult($result)) {
$json_info["updated"] = date("c", strtotime($result[0]['updated'])); $json_info["updated"] = date("c", strtotime($result[0]['updated']));
} }