diff options
author | friendica <info@friendica.com> | 2012-02-20 19:50:05 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-20 19:50:05 -0800 |
commit | b821399f001cd4082707ba9fb6df9c419e0b8e5e (patch) | |
tree | 1e858c850055542794c3f99d21517fdf897c5881 /mod/notify.php | |
parent | 6edd6d8ae1e3a6b64fa11ae6a4cc79965084b0d7 (diff) | |
download | volse-hubzilla-b821399f001cd4082707ba9fb6df9c419e0b8e5e.tar.gz volse-hubzilla-b821399f001cd4082707ba9fb6df9c419e0b8e5e.tar.bz2 volse-hubzilla-b821399f001cd4082707ba9fb6df9c419e0b8e5e.zip |
email notify now redirected through mod_notify, weirdness in local deliver caused by community page changes
Diffstat (limited to 'mod/notify.php')
-rw-r--r-- | mod/notify.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mod/notify.php b/mod/notify.php new file mode 100644 index 000000000..d1e5022bc --- /dev/null +++ b/mod/notify.php @@ -0,0 +1,29 @@ +<?php + + +function notify_init(&$a) { + if(! local_user()) + return; + + if($a->argc > 2 && $a->argv[1] === 'view' && intval($a->argv[2])) { + $r = q("select * from notify where id = %d and uid = %d limit 1", + intval($a->argv[2]), + intval(local_user()) + ); + if(count($r)) { + q("update notify set seen = 1 where id = %d and uid = %d limit 1", + intval($a->argv[2]), + intval(local_user()) + ); + goaway($r[0]['link']); + } + + goaway($a->get_baseurl()); + } +} + + +function notify_content(&$a) { + if(! local_user()) + return login(); +}
\ No newline at end of file |