diff --git a/bureau/admin/adm_dodel.php b/bureau/admin/adm_dodel.php
index 3103ad31..85c767b8 100644
--- a/bureau/admin/adm_dodel.php
+++ b/bureau/admin/adm_dodel.php
@@ -40,19 +40,15 @@ $fields = array (
);
getFields($fields);
+$accountList = $d;
if($del_confirm == "y"){
- if (!is_array($accountList)) {
- $accountList[] = $accountList;
- }
-
- reset($accountList);
- while (list($key,$val)=each($accountList)) {
+ $error = "";
+ foreach ($accountList as $key => $val) {
if (!$admin->checkcreator($val)) {
__("This page is restricted to authorized staff");
exit();
}
- $error = "";
if (!($u=$admin->get($val)) || !$admin->del_mem($val)) {
$error .= sprintf(_("Member '%s' does not exist"),$val)."
";
} else {
@@ -77,12 +73,14 @@ if($del_confirm == "y"){
- get($userid);
- echo "".$membre['login']."
";
- }
- ?>
+
" /> diff --git a/bureau/locales/it_IT/LC_MESSAGES/alternc.mo b/bureau/locales/it_IT/LC_MESSAGES/alternc.mo index 3cbdbce0..b550b85b 100644 Binary files a/bureau/locales/it_IT/LC_MESSAGES/alternc.mo and b/bureau/locales/it_IT/LC_MESSAGES/alternc.mo differ