From 9d46f23c6669ad07b184b9596b7b843be43ae87c Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Thu, 1 Sep 2016 23:39:49 -0600 Subject: [PATCH] Allow spaces in usernames by default --- core/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.js b/core/config.js index d060f508..a6bbe25a 100644 --- a/core/config.js +++ b/core/config.js @@ -118,7 +118,7 @@ function getDefaultConfig() { users : { usernameMin : 2, usernameMax : 16, // Note that FidoNet wants 36 max - usernamePattern : '^[A-Za-z0-9~!@#$%^&*()\\-\\_+]+$', + usernamePattern : '^[A-Za-z0-9~!@#$%^&*()\\-\\_+ ]+$', passwordMin : 6, passwordMax : 128,