diff options
author | friendica <info@friendica.com> | 2012-02-29 18:19:08 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-29 18:19:08 -0800 |
commit | bbebb4c2a050f22e9aa51cb123359b169bcb3b3c (patch) | |
tree | 691c6f2b64556df936a7f9e9b23a69b3873b962a /mod | |
parent | 84d5f495e6e6edd7114b7e72711035e96479e39a (diff) | |
download | volse-hubzilla-bbebb4c2a050f22e9aa51cb123359b169bcb3b3c.tar.gz volse-hubzilla-bbebb4c2a050f22e9aa51cb123359b169bcb3b3c.tar.bz2 volse-hubzilla-bbebb4c2a050f22e9aa51cb123359b169bcb3b3c.zip |
notification enhancements
Diffstat (limited to 'mod')
-rw-r--r-- | mod/notify.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/notify.php b/mod/notify.php index 16b87b76f..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 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']); |