瀏覽代碼

Fixed password change via admin panel

Fixed an error when changing the password through the admin panel, it was impossible to log in
Sergei Solovev 2 年之前
父節點
當前提交
506de6e63a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      system/library/acpsystem.php

+ 1 - 1
system/library/acpsystem.php

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