[Security] Fixed missed argument in call custom handler when authentication is successful.

This commit is contained in:
Deni 2011-02-14 00:04:26 +03:00 committed by Fabien Potencier
parent 1292925702
commit 657f90a931

View File

@ -229,7 +229,7 @@ abstract class AbstractAuthenticationListener implements ListenerInterface
}
if (null !== $this->successHandler) {
$response = $this->successHandler->onAuthenticationSuccess($request, $token);
$response = $this->successHandler->onAuthenticationSuccess($event, $request, $token);
} else {
$response = new Response();
$path = $this->determineTargetUrl($request);