From 7a0d14f23dfbf653120a6d97ab6f9846d1706a20 Mon Sep 17 00:00:00 2001 From: Sen Manho Date: Wed, 18 May 2022 23:05:52 +0900 Subject: [PATCH] Do not check password minimal length --- oauth/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth/index.php b/oauth/index.php index a0b4fd3..9a7e804 100644 --- a/oauth/index.php +++ b/oauth/index.php @@ -41,7 +41,7 @@ else { messageShow($prompt_template, 'Username has incorrect format ... Please try again'); } - elseif (strlen($_POST['password']) > 64 || strlen($_POST['password']) <= 7) + elseif (strlen($_POST['password']) > 64) { messageShow($prompt_template, 'Password has incorrect format ... Please try again'); }