From 9fd3f3f8eccbe472cee2056ff7b90228481b5ec3 Mon Sep 17 00:00:00 2001 From: overflowerror Date: Sun, 3 Dec 2023 13:37:04 +0100 Subject: [PATCH] feat: Set min length to 4 --- controllers/manage/POST.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/manage/POST.php b/controllers/manage/POST.php index 42473a5..1b24703 100644 --- a/controllers/manage/POST.php +++ b/controllers/manage/POST.php @@ -3,7 +3,7 @@ require_once(ROOT . "/utils/error.php"); const CANDIDATES_PER_ITERATION = 10; -const MIN_LENGTH = 3; +const MIN_LENGTH = 4; const MAX_LENGTH = 20; const DEFAULT_SCHEMA = "http://";