This commit is contained in:
Alan Garcia 2012-08-23 17:51:25 +00:00
parent b4d4053a29
commit 797b821fc7
2 changed files with 33 additions and 8 deletions

View File

@ -43,13 +43,13 @@ if ($password != $passwordconf) {
exit();
}
if (!$password) {
if (empty($password)) {
$error=_("Please enter a password");
include ("hta_adduser.php");
exit();
}
if (!$hta->add_user($user, $password,$dir)) {
if (!$hta->add_user($user, $password, $dir)) {
$error=$err->errstr();
include ("hta_adduser.php");
} else {

View File

@ -30,17 +30,42 @@
require_once("../class/config.php");
$fields = array (
"d" => array ("post", "array", ""),
"d" => array ("post", "array", array()),
"dir" => array ("post", "string", ""),
"confirm_del" => array ("post", "string", ""),
);
getFields($fields);
reset($d);
if (!$hta->del_user($d,$dir)) {
$error=$err->errstr();
if (!empty($confirm_del)) {
reset($d);
if (!$hta->del_user($d,$dir)) {
$error=$err->errstr();
}
header ('Location: /hta_edit.php?dir='.urlencode($dir));
exit();
}
include_once('head.php');
?>
<h3><?php __("Authorized user deletion confirm"); ?></h3>
<hr id="topbar"/>
<br />
<?php __("Do you really want to delete those users ?");?>
<ul>
<?php foreach($d as $t) {
echo "<li>$t</li>\n";
} ?>
</ul>
include("hta_edit.php");
<form method="post" action="hta_dodeluser.php" name="main" id="main">
<input type='hidden' name='dir' value='<?php echo $dir;?>' >
<?php foreach($d as $t) {
echo "<input type='hidden' name='d[$t]' value='$t' >\n";
} ?>
<input type="submit" class="inb" name="confirm_del" value="<?php __("Delete")?>" />
<input type="button" class="inb" name="cancel" value="<?php __("Cancel"); ?>" onclick="document.location='/hta_edit.php?dir=<?php echo urlencode($dir);?>'" />
</form>
<?php
include_once('foot.php');
exit();
?>