From 99f901f55c17bd4ea84dafe226d3295867d83b8a Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Fri, 11 May 2012 08:54:36 +0000 Subject: [PATCH] // Allow non-latin characters to the password + change limit from 32 to 255. --- classes/Validate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Validate.php b/classes/Validate.php index 2e5978c6e..9de147573 100644 --- a/classes/Validate.php +++ b/classes/Validate.php @@ -407,7 +407,7 @@ class ValidateCore */ public static function isPasswd($passwd, $size = 5) { - return preg_match('/^[.a-zA-Z_0-9-!@#$%\^&*()]{'.(int)$size.',32}$/', $passwd); + return (Tools::strlen($passwd) > $size && Tools::strlen($passwd) < 255); } public static function isPasswdAdmin($passwd)