aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notify.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/notify.php')
-rw-r--r--mod/notify.php4
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']);