aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/userController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-12-20 16:36:55 +0100
committerGravatar GitHub <noreply@github.com> 2023-12-20 16:36:55 +0100
commit79604aa4b3051f083d1734bd9e82c6a89d785c5a (patch)
treeb0b239c679191cfc6768eb437e851ab26679e329 /app/Controllers/userController.php
parenta80a5f48a16e7d232168a7aaa68e9a1804235ce1 (diff)
Fix login (#5955)
fix https://github.com/FreshRSS/FreshRSS/issues/5953 Regression due to https://github.com/FreshRSS/FreshRSS/pull/5946
Diffstat (limited to 'app/Controllers/userController.php')
-rw-r--r--app/Controllers/userController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php
index b3fccac24..126eb60a2 100644
--- a/app/Controllers/userController.php
+++ b/app/Controllers/userController.php
@@ -9,7 +9,7 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController {
* The username is also used as folder name, file name, and part of SQL table name.
* '_' is a reserved internal username.
*/
- public const USERNAME_PATTERN = '([0-9a-zA-Z_][0-9a-zA-Z_.@-]{1,38}|[0-9a-zA-Z])';
+ public const USERNAME_PATTERN = '([0-9a-zA-Z_][0-9a-zA-Z_.@\-]{1,38}|[0-9a-zA-Z])';
public static function checkUsername(string $username): bool {
return preg_match('/^' . self::USERNAME_PATTERN . '$/', $username) === 1;