better handling of multiple notifications for same item, and old notifications

This commit is contained in:
friendica 2012-02-29 16:26:07 -08:00
parent fb33b4f2bc
commit 84d5f495e6
3 changed files with 24 additions and 5 deletions

View file

@ -11,8 +11,8 @@ 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' and uid = %d",
dbesc($r[0]['link']),
intval(local_user())
);
goaway($r[0]['link']);