From 79604aa4b3051f083d1734bd9e82c6a89d785c5a Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 20 Dec 2023 16:36:55 +0100 Subject: Fix login (#5955) fix https://github.com/FreshRSS/FreshRSS/issues/5953 Regression due to https://github.com/FreshRSS/FreshRSS/pull/5946 --- app/Controllers/userController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/userController.php') 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; -- cgit v1.2.3