From e47cc7342f7b8a0a7af960d309fd227537c42523 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sun, 31 Mar 2019 16:33:13 -0600 Subject: [PATCH] Lower username max --- api/actions/addaccount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/actions/addaccount.php b/api/actions/addaccount.php index 8ff0af2..df35073 100644 --- a/api/actions/addaccount.php +++ b/api/actions/addaccount.php @@ -6,7 +6,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -$username_max = 50; +$username_max = 30; $password_min = 8; $username = strtolower($VARS["username"]);