Fix #1348 : Call to undefined app property

This commit is contained in:
Romain Neutron
2013-07-16 19:45:26 +02:00
parent 2b6a284e9c
commit 8a45cac90d

View File

@@ -818,7 +818,7 @@ class Login implements ControllerProviderInterface
$basketId = $validationSession->getBasket()->getId(); $basketId = $validationSession->getBasket()->getId();
try { try {
$token = $this->app['tokens']->getValidationToken($participantId, $basketId); $token = $app['tokens']->getValidationToken($participantId, $basketId);
} catch (NotFoundHttpException $e) { } catch (NotFoundHttpException $e) {
continue; continue;
} }