bug when checking no account to delete
This commit is contained in:
parent
20bf38d89f
commit
4fadbfc400
|
@ -53,7 +53,12 @@ if($_POST["del_confirm"] == "y"){
|
||||||
}
|
}
|
||||||
include("adm_list.php");
|
include("adm_list.php");
|
||||||
exit();
|
exit();
|
||||||
}else{
|
} else {
|
||||||
|
if (!is_array($d) || count($d)==0) {
|
||||||
|
$error=_("Please check the accounts you want to delete");
|
||||||
|
require("adm_list.php");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
include("head.php");
|
include("head.php");
|
||||||
?>
|
?>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -2944,3 +2944,8 @@ msgstr "Listes"
|
||||||
msgid "DB"
|
msgid "DB"
|
||||||
msgstr "Bases"
|
msgstr "Bases"
|
||||||
|
|
||||||
|
msgid "MB"
|
||||||
|
msgstr "Mo"
|
||||||
|
|
||||||
|
msgid "Please check the accounts you want to delete"
|
||||||
|
msgstr "Veuillez cocher les comptes que vous souhaitez effacer"
|
||||||
|
|
Loading…
Reference in New Issue