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 | |
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')
-rw-r--r-- | mod/notify.php | 6 | ||||
-rw-r--r-- | mod/ping.php | 23 |
2 files changed, 25 insertions, 4 deletions
diff --git a/mod/notify.php b/mod/notify.php index e6a7a8859..a572b1534 100644 --- a/mod/notify.php +++ b/mod/notify.php @@ -11,8 +11,10 @@ function notify_init(&$a) { intval(local_user()) ); if(count($r)) { - q("update notify set seen = 1 where id = %d and uid = %d limit 1", - intval($a->argv[2]), + q("update notify set seen = 1 where ( link = '%s' or ( parent != 0 and parent = %d and otype = '%s' )) and uid = %d", + dbesc($r[0]['link']), + intval($r[0]['parent']), + dbesc($r[0]['otype']), intval(local_user()) ); goaway($r[0]['link']); 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(); |