From b52f0a6b9397d8977b4fabce241ca9dc731cdbec Mon Sep 17 00:00:00 2001 From: Jeremy Booker Date: Tue, 23 May 2017 09:29:45 -0400 Subject: [PATCH] Relax minimum name and username lengths. We have students with three-letter full names, and two-letter user names. --- mod/users/conf/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mod/users/conf/config.php b/mod/users/conf/config.php index 5295de1e4..d12f5e194 100644 --- a/mod/users/conf/config.php +++ b/mod/users/conf/config.php @@ -45,9 +45,9 @@ // Enter the minimum character // count allowed for each define('PASSWORD_LENGTH', 5); -define('USERNAME_LENGTH', 3); -define('DISPLAY_NAME_LENGTH', 4); -define('GROUPNAME_LENGTH', 4); +define('USERNAME_LENGTH', 1); +define('DISPLAY_NAME_LENGTH', 1); +define('GROUPNAME_LENGTH', 1); define('LOGIN_BUTTON', 'Login'); define('USER_SIGNUP_QUESTION', dgettext('users', 'Want to join?'));