Merge pull request #1458 from annando/issue-1038

Issue 1038:  Send update to directory when account is removed
This commit is contained in:
Tobias Diekershoff 2015-03-31 07:35:12 +02:00
commit 94cad338af
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,10 @@ function user_remove($uid) {
// q("DELETE FROM `user` WHERE `uid` = %d", intval($uid));
q("UPDATE `user` SET `account_removed` = 1, `account_expires_on` = UTC_TIMESTAMP() WHERE `uid` = %d", intval($uid));
proc_run('php', "include/notifier.php", "removeme", $uid);
// Send an update to the directory
proc_run('php', "include/directory.php", $r[0]['url']);
if($uid == local_user()) {
unset($_SESSION['authenticated']);
unset($_SESSION['uid']);