aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService/UserAccountService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/UserAccountService/UserAccountService.cs')
-rw-r--r--OpenSim/Services/UserAccountService/UserAccountService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs
index abd9bbf..24f436d 100644
--- a/OpenSim/Services/UserAccountService/UserAccountService.cs
+++ b/OpenSim/Services/UserAccountService/UserAccountService.cs
@@ -388,8 +388,8 @@ namespace OpenSim.Services.UserAccountService
388 string rawPrincipalId; 388 string rawPrincipalId;
389 string model; 389 string model;
390 390
391 List<char> excluded = new List<char>(new char[]{' '}); 391 // List<char> excluded = new List<char>(new char[]{' '});
392 392 List<char> excluded = new List<char>(new char[]{' ', '@', '.', ':' }); //Protect user names from using valid HG identifiers.
393 if (cmdparams.Length < 3) 393 if (cmdparams.Length < 3)
394 firstName = MainConsole.Instance.CmdPrompt("First name", "Default", excluded); 394 firstName = MainConsole.Instance.CmdPrompt("First name", "Default", excluded);
395 else firstName = cmdparams[2]; 395 else firstName = cmdparams[2];