diff options
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/ping.php b/mod/ping.php index b9ecf9b41..f067091da 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -50,6 +50,7 @@ function ping_init(&$a) { if($r) { foreach($r as $rr) { q("update chatpresence set cp_last = '%s' where cp_id = %d limit 1", + dbesc(datetime_convert()), intval($rr['cp_id']) ); } @@ -67,7 +68,6 @@ function ping_init(&$a) { q("delete from chatpresence where cp_last < UTC_TIMESTAMP() - INTERVAL 2 MINUTE"); - if((! local_user()) || ($result['invalid'])) { echo json_encode($result); killme(); |