diff options
author | Sergey Linnik <linniksa@gmail.com> | 2011-01-28 20:40:32 +0300 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-01-28 18:46:27 +0100 |
commit | 0405b3821fb9381e8d73225fd5100e99017f595d (patch) | |
tree | a49f80507d1fe58513143045fb29bdaba17218c2 /Http | |
parent | b1bfdddc9268c6c5816bf2cf0690f694b02d32b4 (diff) | |
download | symfony-security-0405b3821fb9381e8d73225fd5100e99017f595d.zip symfony-security-0405b3821fb9381e8d73225fd5100e99017f595d.tar.gz symfony-security-0405b3821fb9381e8d73225fd5100e99017f595d.tar.bz2 |
Fixed typo
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Firewall.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Http/Firewall.php b/Http/Firewall.php index 64b345f..f7fabbb 100644 --- a/Http/Firewall.php +++ b/Http/Firewall.php @@ -85,8 +85,8 @@ class Firewall } // initiate the listener chain - $ret = $this->dispatcher->notifyUntil($event = new Event($request, 'core.security', array('request' => $request))); - if ($event->isProcessed()) { + $ret = $this->dispatcher->notifyUntil($securityEvent = new Event($request, 'core.security', array('request' => $request))); + if ($securityEvent->isProcessed()) { $event->setProcessed(); return $ret; |