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/notify.php | |
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/notify.php')
-rw-r--r-- | mod/notify.php | 6 |
1 files changed, 4 insertions, 2 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']); |