Fixed password change via admin panel

Fixed an error when changing the password through the admin panel, it was impossible to log in
This commit is contained in:
Sergei Solovev 2023-03-15 23:53:24 +03:00
parent ac6ba7cb5e
commit 506de6e63a

View file

@ -577,7 +577,7 @@
public static function passwdkey($passwd)
{
return md5(sha1($passwd));
return md5($passwd);
}
public static function mail($name, $text, $mail)