diff options
author | RedMatrix <info@friendica.com> | 2014-08-15 23:03:04 +1000 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-08-15 23:03:04 +1000 |
commit | d6da6f5001aa70681401a8b811d4e431a7831bd8 (patch) | |
tree | 240a16b7ab1bf73b9e28d31d58c72c43a1278c03 /mod/admin.php | |
parent | b88e1e98624510ceb5cc63a12d9f229213f2d5a1 (diff) | |
parent | f36253b7a8f3cc628b985df1ab257ff03189727c (diff) | |
download | volse-hubzilla-d6da6f5001aa70681401a8b811d4e431a7831bd8.tar.gz volse-hubzilla-d6da6f5001aa70681401a8b811d4e431a7831bd8.tar.bz2 volse-hubzilla-d6da6f5001aa70681401a8b811d4e431a7831bd8.zip |
Merge pull request #562 from cvogeley/master
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 230ef3011..14657bd1a 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -639,7 +639,7 @@ function admin_page_users_post(&$a){ if (x($_POST,'page_users_delete')){ require_once("include/Contact.php"); foreach($users as $uid){ - account_remove($uid,true); + account_remove($uid,true,false); } notice( sprintf( tt("%s user deleted", "%s users deleted", count($users)), count($users)) ); } |