[feladat @ 87]
Bugfix. With user level 5 or 10 and lots of zones without an owner,
like slave zones that are inserted by a supermaster, the "list all
zones" view was broken (not all zones shown, but "show page" and
"show letters" were missing as well). Function zone_count matches
zones and domains table, but users with level 5 or 10 are allowed
to see zones without an entry in the zones table as well.
<?php
require_once("inc/i18n.inc.php");
require_once("inc/toolkit.inc.php");
if($_POST["submit"])
{
if(strlen($_POST["newpass"]) < 8)
{
error('Password length should be at least 8 characters.');
}
else
{
change_user_pass($_POST["currentpass"], $_POST["newpass"], $_POST["newpass2"]);
}
}
include_once("inc/header.inc.php");
?>
<h2>Change password</h2>
<form method="post" action="change_password.php">
<table border="0" CELLSPACING="4">
<tr>
<td class="n"><? echo _('Current password'); ?>:</td>
<td class="n"><input type="password" class="input" NAME="currentpass" value=""></td>
</tr>
<tr>
<td class="n"><? echo _('New password'); ?>:</td>
<td class="n"><input type="password" class="input" NAME="newpass" value=""></td>
</tr>
<tr>
<td class="n"><? echo _('New password'); ?>:</td>
<td class="n"><input type="password" class="input" NAME="newpass2" value=""></td>
</tr>
<tr>
<td class="n"> </td>
<td class="n">
<input type="submit" class="button" NAME="submit" value="<? echo _('Change password'); ?>">
</td>
</tr>
</table>
</form>
<?
include_once("inc/footer.inc.php");
?>