diff options
author | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-08-14 20:17:57 +0200 |
---|---|---|
committer | Christian Vogeley <christian.vogeley@hotmail.de> | 2014-08-14 20:17:57 +0200 |
commit | fc94a638cd16dce8ed0d2772d29432f99396a70f (patch) | |
tree | 5388cf1ed57a692a5a31623f0ab5e72615adea84 /mod/admin.php | |
parent | 94ed44e76ebb6e1ed197411be16aa4d85f454b0a (diff) | |
download | volse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.tar.gz volse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.tar.bz2 volse-hubzilla-fc94a638cd16dce8ed0d2772d29432f99396a70f.zip |
Some work on account deletion
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/admin.php b/mod/admin.php index 464edddd4..d9ca998ac 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -672,7 +672,7 @@ function admin_page_users(&$a){ check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); // delete user require_once("include/Contact.php"); - account_remove($uid,true); + account_remove($uid,true,false); notice( sprintf(t("User '%s' deleted"), $account[0]['account_email']) . EOL); }; break; |