partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit f0194e50c42ff223cde77a8d8d802250d06c9ffd
parent 351836e5f3930ecdd8952e10486b3fb5254164a8
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 12 Oct 2015 14:42:57 +0200

Set legacy flag when creating a proxy user

Diffstat:
Msrc/PartKeepr/AuthBundle/Services/UserService.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/PartKeepr/AuthBundle/Services/UserService.php b/src/PartKeepr/AuthBundle/Services/UserService.php @@ -167,7 +167,7 @@ class UserService private function createProxyUser($username, $provider) { $user = new User($username, $provider); - $user->setLegacy(false); +q $user->setLegacy(false); $this->entityManager->persist($user); $this->entityManager->flush();