aboutsummaryrefslogtreecommitdiffstats
path: root/include/Contact.php
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2014-08-14 20:17:57 +0200
committerChristian Vogeley <christian.vogeley@hotmail.de>2014-08-14 20:17:57 +0200
commitfc94a638cd16dce8ed0d2772d29432f99396a70f (patch)
tree5388cf1ed57a692a5a31623f0ab5e72615adea84 /include/Contact.php
parent94ed44e76ebb6e1ed197411be16aa4d85f454b0a (diff)
downloadvolse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.tar.gz
volse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.tar.bz2
volse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.zip
Some work on account deletion
Diffstat (limited to 'include/Contact.php')
-rw-r--r--include/Contact.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/include/Contact.php b/include/Contact.php
index 100854f0d..47b1763cb 100644
--- a/include/Contact.php
+++ b/include/Contact.php
@@ -162,7 +162,7 @@ function user_remove($uid) {
}
-function account_remove($account_id,$local = true) {
+function account_remove($account_id,$local = true,$unset_session=true) {
logger('account_remove: ' . $account_id);
@@ -196,7 +196,7 @@ function account_remove($account_id,$local = true) {
);
if($x) {
foreach($x as $xx) {
- channel_remove($xx['channel_id'],$local);
+ channel_remove($xx['channel_id'],$local,false);
}
}
@@ -204,11 +204,16 @@ function account_remove($account_id,$local = true) {
intval($account_id)
);
+ if ($unset_session) {
+ unset($_SESSION['authenticated']);
+ unset($_SESSION['uid']);
+ goaway(get_app()->get_baseurl());
+ }
return $r;
}
-function channel_remove($channel_id, $local = true) {
+function channel_remove($channel_id, $local = true, $unset_session=true) {
if(! $channel_id)
return;
@@ -292,7 +297,7 @@ function channel_remove($channel_id, $local = true) {
proc_run('php','include/directory.php',$channel_id);
- if($channel_id == local_user()) {
+ if($channel_id == local_user() && $unset_session) {
unset($_SESSION['authenticated']);
unset($_SESSION['uid']);
goaway($a->get_baseurl());