aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2014-08-15 14:56:17 +0200
committerChristian Vogeley <christian.vogeley@hotmail.de>2014-08-15 14:56:17 +0200
commitf36253b7a8f3cc628b985df1ab257ff03189727c (patch)
tree21fbf0672b124ae076114340c8ead674cb41bb3a /mod
parent21adbad4c1a0f9a7953c3c011a3669d09cfc2bb4 (diff)
downloadvolse-hubzilla-f36253b7a8f3cc628b985df1ab257ff03189727c.tar.gz
volse-hubzilla-f36253b7a8f3cc628b985df1ab257ff03189727c.tar.bz2
volse-hubzilla-f36253b7a8f3cc628b985df1ab257ff03189727c.zip
Account deletion
fix multi user deletion, add confirmation message
Diffstat (limited to 'mod')
-rw-r--r--mod/admin.php2
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)) );
}