aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-08-15 09:58:43 +1000
committerRedMatrix <info@friendica.com>2014-08-15 09:58:43 +1000
commitf4229dbc3f17463d41a39e6b9038dd10fee6597a (patch)
treebca29c3edd986b28098e56155af8ee367147097a /include
parentc1b89b413aea94ca81912437e8789f4cd719886e (diff)
parentfc94a638cd16dce8ed0d2772d29432f99396a70f (diff)
downloadvolse-hubzilla-f4229dbc3f17463d41a39e6b9038dd10fee6597a.tar.gz
volse-hubzilla-f4229dbc3f17463d41a39e6b9038dd10fee6597a.tar.bz2
volse-hubzilla-f4229dbc3f17463d41a39e6b9038dd10fee6597a.zip
Merge pull request #561 from cvogeley/master
Some work on account deletion
Diffstat (limited to 'include')
-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());