scrape/noscrape now contains the date the profile was last updated or the last message was sent.
This commit is contained in:
parent
b7a50a24c7
commit
4a1105ede6
4 changed files with 15 additions and 0 deletions
|
@ -32,6 +32,11 @@ function noscrape_init(&$a) {
|
|||
);
|
||||
|
||||
if(is_array($a->profile) AND !$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(count($r))
|
||||
$json_info["updated"] = date("c", strtotime($r[0]['updated']));
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
|
||||
AND `network` IN ('%s', '%s', '%s', '')",
|
||||
intval($a->profile['uid']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue