diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-01 11:47:45 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-01 11:47:45 +0100 |
commit | b6b7742579d16a4eab97249758a62c5ff33bd07d (patch) | |
tree | c96868ebedd31c0fe976452a635b044038abc9cc /mod/ping.php | |
parent | ed42fa7d59f0eb979b3b5c86b6969c53d6b6573b (diff) | |
parent | bd2c8c92f1b30d8f811bd4aab0fe3a2c5496ec61 (diff) | |
download | volse-hubzilla-b6b7742579d16a4eab97249758a62c5ff33bd07d.tar.gz volse-hubzilla-b6b7742579d16a4eab97249758a62c5ff33bd07d.tar.bz2 volse-hubzilla-b6b7742579d16a4eab97249758a62c5ff33bd07d.zip |
Merge remote-tracking branch 'friendica/master' into randomerror
Diffstat (limited to 'mod/ping.php')
-rw-r--r-- | mod/ping.php | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/mod/ping.php b/mod/ping.php index 7380ff7d0..1562254b1 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -14,10 +14,29 @@ function ping_init(&$a) { $firehose = intval(get_pconfig(local_user(),'system','notify_full')); - $z = q("select * from notify where uid = %d - order by seen asc, date desc limit 0, 50", + $t = q("select count(*) as total from notify where uid = %d and seen = 0", intval(local_user()) ); + if($t && intval($t[0]['total']) > 49) { + $z = q("select * from notify where uid = %d + and seen = 0 order by date desc limit 0, 50", + intval(local_user()) + ); + } + else { + $z1 = q("select * from notify where uid = %d + and seen = 0 order by date desc limit 0, 50", + intval(local_user()) + ); + + $z2 = q("select * from notify where uid = %d + and seen = 1 order by date desc limit 0, %d", + intval(local_user()), + intval(50 - intval($t[0]['total'])) + ); + $z = array_merge($z1,$z2); + } + $tags = array(); |