diff --git a/inc/core/class.dc.core.php b/inc/core/class.dc.core.php index e9c0ac2..0c6f2e5 100644 --- a/inc/core/class.dc.core.php +++ b/inc/core/class.dc.core.php @@ -941,8 +941,8 @@ class dcCore } if ($cur->isField('user_pwd')) { - if (strlen($cur->user_pwd) < 6) { - throw new Exception(__('Password must contain at least 6 characters.')); + if (strlen($cur->user_pwd) < 1) { + throw new Exception(__('Password must contain at least 1 characters.')); } $cur->user_pwd = $this->auth->crypt($cur->user_pwd); }