diff --git a/sources/patches/app-00-password_length.patch b/sources/patches/app-00-password_length.patch new file mode 100644 index 0000000..a474105 --- /dev/null +++ b/sources/patches/app-00-password_length.patch @@ -0,0 +1,15 @@ +diff --git a/inc/core/class.dc.core.php b/inc/core/class.dc.core.php +index 53f0262..c203a84 100644 +--- a/inc/core/class.dc.core.php ++++ b/inc/core/class.dc.core.php +@@ -829,8 +829,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); + }