I think I've found a bug.
Password modif weren't working (I saw I m not the only one to encounter the prob.
- Code: Select all
#
#-----[ OPEN ]------------------------------------------
#
admin/admin_users.php
[...]
- Code: Select all
#
#-----[ FIND ]------------------------------------------
#
if ($signature != '')
#
#-----[ BEFORE, ADD ]------------------------------------------
#i
f ($new_user)
{
//no password given for this new user, create default password
$password = md5(DEFAULT_PASSWD);
$passwd_sql = "user_password = '$password', ";
//send out email notification goes here
}
should be:
- Code: Select all
else if ( empty($password) && empty($password_confirm) )
{
//no password given for this new user, create default password
$password = md5(DEFAULT_PASSWD);
$passwd_sql = "user_password = '$password', ";
//send out email notification goes here
}
otherwise the password change is not taken in account !


