diff options
author | friendica <info@friendica.com> | 2012-02-29 16:26:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-29 16:26:07 -0800 |
commit | 84d5f495e6e6edd7114b7e72711035e96479e39a (patch) | |
tree | 1432e53be1743ca09bc1ed2435f678ef45ff1804 /mod/notify.php | |
parent | fb33b4f2bcd18e63d311e6dba3aaa2ea5efdec3b (diff) | |
download | volse-hubzilla-84d5f495e6e6edd7114b7e72711035e96479e39a.tar.gz volse-hubzilla-84d5f495e6e6edd7114b7e72711035e96479e39a.tar.bz2 volse-hubzilla-84d5f495e6e6edd7114b7e72711035e96479e39a.zip |
better handling of multiple notifications for same item, and old notifications
Diffstat (limited to 'mod/notify.php')
-rw-r--r-- | mod/notify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/notify.php b/mod/notify.php index e6a7a8859..16b87b76f 100644 --- a/mod/notify.php +++ b/mod/notify.php @@ -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']); |