aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notify.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-06-10 22:35:15 -0700
committerfriendica <info@friendica.com>2014-06-10 22:35:15 -0700
commit3dfcfbf85cbbdc93b19549faed56e2dc593175d7 (patch)
tree06d6ed98eaf81259f2e723231e51f73528658b35 /mod/notify.php
parent13ba9ef0037656b1e12d627f767fc2fc8781632a (diff)
downloadvolse-hubzilla-3dfcfbf85cbbdc93b19549faed56e2dc593175d7.tar.gz
volse-hubzilla-3dfcfbf85cbbdc93b19549faed56e2dc593175d7.tar.bz2
volse-hubzilla-3dfcfbf85cbbdc93b19549faed56e2dc593175d7.zip
issue #433
Diffstat (limited to 'mod/notify.php')
-rw-r--r--mod/notify.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/notify.php b/mod/notify.php
index 6ee4260ce..72534c7fd 100644
--- a/mod/notify.php
+++ b/mod/notify.php
@@ -11,15 +11,14 @@ function notify_init(&$a) {
intval(local_user())
);
if($r) {
- q("update notify set seen = 1 where ( link = '%s' or ( parent != '' and parent = '%s' and otype = '%s' )) and uid = %d",
- dbesc($r[0]['link']),
- intval($r[0]['parent']),
+ q("update notify set seen = 1 where (( parent != '' and parent = '%s' and otype = '%s' ) or link = '%s' ) and uid = %d",
+ dbesc($r[0]['parent']),
dbesc($r[0]['otype']),
+ dbesc($r[0]['link']),
intval(local_user())
);
goaway($r[0]['link']);
}
-
goaway($a->get_baseurl(true));
}