diff options
| author | 2017-02-16 18:55:19 +0100 | |
|---|---|---|
| committer | 2017-02-16 18:55:19 +0100 | |
| commit | ef2001959188f721a0928fb3ff59ebd6a5a31b1a (patch) | |
| tree | 135e1b8010e129d04ec3a663cc8864c3b8efb898 /app/views/user/manage.phtml | |
| parent | 4eeae5171b885b6dda392f5dd68d6dd78a0c7858 (diff) | |
delete - and . from accepted char
Diffstat (limited to 'app/views/user/manage.phtml')
| -rw-r--r-- | app/views/user/manage.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index 334650e56..10bee5507 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -22,7 +22,7 @@ <div class="form-group"> <label class="group-name" for="new_user_name"><?php echo _t('admin.user.username'); ?></label> <div class="group-controls"> - <input id="new_user_name" name="new_user_name" type="text" size="16" required="required" maxlength="16" autocomplete="off" pattern="[0-9a-zA-Z.\-_]{1,16}" placeholder="demo" /> + <input id="new_user_name" name="new_user_name" type="text" size="16" required="required" maxlength="16" autocomplete="off" pattern="[0-9a-zA-Z_]{1,16}" placeholder="demo" /> </div> </div> |
