partkeepr

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

commit a7765552a5c127868653f98b4b0bf28ed9516d81
parent f0194e50c42ff223cde77a8d8d802250d06c9ffd
Author: Felicitus <felicitus@felicitus.org>
Date:   Mon, 12 Oct 2015 14:43:26 +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); -q $user->setLegacy(false); + $user->setLegacy(false); $this->entityManager->persist($user); $this->entityManager->flush();