From: nupplaPhil Date: Mon, 27 Jan 2020 22:28:38 +0000 (+0100) Subject: Fix NoScrape SQL X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c4d309f801ef2235543889f2607a80f7f65d61be;p=friendica.git Fix NoScrape SQL --- diff --git a/src/Module/NoScrape.php b/src/Module/NoScrape.php index 0d765f6403..99b55f273d 100644 --- a/src/Module/NoScrape.php +++ b/src/Module/NoScrape.php @@ -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'])); }