notification enhancements

This commit is contained in:
friendica 2012-02-29 18:19:08 -08:00
parent 84d5f495e6
commit bbebb4c2a0
5 changed files with 43 additions and 7 deletions

View file

@ -11,8 +11,10 @@ function notify_init(&$a) {
intval(local_user())
);
if(count($r)) {
q("update notify set seen = 1 where link = '%s' and uid = %d",
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']);