diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-13 18:54:20 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2011-06-13 18:54:20 +0200 |
commit | d6f601eaddba803211510d4c5e3690d99b476f13 (patch) | |
tree | f87eea4d01fe31fcfc4175229df6dd6536261686 | |
parent | 92b56d0bffe1b2f75be9b3b541206342a2163dc3 (diff) | |
download | symfony-security-d6f601eaddba803211510d4c5e3690d99b476f13.zip symfony-security-d6f601eaddba803211510d4c5e3690d99b476f13.tar.gz symfony-security-d6f601eaddba803211510d4c5e3690d99b476f13.tar.bz2 |
fixed CS
-rw-r--r-- | Http/Firewall/LogoutListener.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/LogoutListener.php b/Http/Firewall/LogoutListener.php index 06e5d68..e1a5f3d 100644 --- a/Http/Firewall/LogoutListener.php +++ b/Http/Firewall/LogoutListener.php @@ -71,7 +71,7 @@ class LogoutListener implements ListenerInterface $logoutPath = str_replace('{_locale}', $request->getSession()->getLocale(), $this->logoutPath); $targetUrl = str_replace('{_locale}', $request->getSession()->getLocale(), $this->targetUrl); - + if ($logoutPath !== $request->getPathInfo()) { return; } |