]> source.dussan.org Git - nextcloud-server.git/commitdiff
Trim the login name 18183/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 2 Dec 2019 08:37:51 +0000 (09:37 +0100)
committerChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 2 Dec 2019 08:37:51 +0000 (09:37 +0100)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
core/Controller/LoginController.php

index c0c0b1a064b5a7e9eddc6c3927b63b103a8aae39..f945d405a0628ee342eee1518a5e1f5244f3a8e5 100644 (file)
@@ -284,6 +284,7 @@ class LoginController extends Controller {
                if(!is_string($user)) {
                        throw new \InvalidArgumentException('Username must be string');
                }
+               $user = trim($user);
 
                // If the user is already logged in and the CSRF check does not pass then
                // simply redirect the user to the correct page as required. This is the