email notify now redirected through mod_notify, weirdness in local deliver caused by community page changes

This commit is contained in:
friendica 2012-02-20 19:50:05 -08:00
commit b821399f00
6 changed files with 72 additions and 7 deletions

29
mod/notify.php Normal file
View file

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