From 5671f470fcd911bd0f43137b11daf038d8642767 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Sat, 18 Apr 2020 18:31:25 +0200 Subject: [PATCH] patch password lenght --- sources/patches/app-00-password_length.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sources/patches/app-00-password_length.patch 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); + }