diff options
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/ping.php b/mod/ping.php index ea5c308a3..7e96b7121 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -8,13 +8,13 @@ function ping_init(&$a) { xml_status(0); $r = q("SELECT COUNT(*) AS `total` FROM `item` - WHERE `unseen` = 1 AND `uid` = %d", + WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d", intval($_SESSION['uid']) ); $network = $r[0]['total']; $r = q("SELECT COUNT(*) AS `total` FROM `item` - WHERE `unseen` = 1 AND `uid` = %d AND `type` != 'remote' ", + WHERE `unseen` = 1 AND `visible` = 1 AND `deleted` = 0 AND `uid` = %d AND `type` != 'remote' ", intval($_SESSION['uid']) ); $home = $r[0]['total']; |