From 3dfcfbf85cbbdc93b19549faed56e2dc593175d7 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 10 Jun 2014 22:35:15 -0700 Subject: issue #433 --- mod/notify.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'mod/notify.php') 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)); } -- cgit v1.2.3