This commit is contained in:
friendica
2014-06-10 22:35:15 -07:00
parent 13ba9ef003
commit 3dfcfbf85c
4 changed files with 6 additions and 6 deletions

View File

@@ -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));
}