mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-21 23:07:25 -04:00
Merge pull request #499 from nicolaselie/dev
Username regexp is too strict
This commit is contained in:
@@ -913,7 +913,7 @@ function printStep3 () {
|
||||
<div class="form-group">
|
||||
<label class="group-name" for="user"><?php echo _t ('username'); ?></label>
|
||||
<div class="group-controls">
|
||||
<input type="text" id="user" name="user" maxlength="16" pattern="[0-9A-Za-z_]{1,16}" value="<?php echo isset ($_SESSION['bd_user']) ? $_SESSION['bd_user'] : ''; ?>" />
|
||||
<input type="text" id="user" name="user" maxlength="16" pattern="[0-9A-Za-z_.-]{1,16}" value="<?php echo isset ($_SESSION['bd_user']) ? $_SESSION['bd_user'] : ''; ?>" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user