summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-08-22 08:44:20 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-08-22 08:44:20 +0200
commitdbc6f9f8cfebf4dede4639a733305baec94ab3bb (patch)
tree44f0eed5e202221f88d3d169ed53d371e88b5e77
parent3a63ed4527abf2fa9cc1a240cc2947d2317de182 (diff)
parenteb3213ef7a4d51816c1aaf7375897e0c040acb8b (diff)
downloadsymfony-security-dbc6f9f8cfebf4dede4639a733305baec94ab3bb.zip
symfony-security-dbc6f9f8cfebf4dede4639a733305baec94ab3bb.tar.gz
symfony-security-dbc6f9f8cfebf4dede4639a733305baec94ab3bb.tar.bz2
Merge branch '2.3'
* 2.3: [Locale] fixed build-data exit code in case of an error fixed request format of sub-requests when explicitely set by the developer (closes #8787) Sets _format attribute only if it wasn't set previously by the user. Exclude little words of 'ee' to 'oo' plural transformation fixed the format of the request used to render an exception Fix typo in the check_path validator added a missing use statement (closes #8808) fix for Process:isSuccessful() Include untrusted host in the exception message Conflicts: src/Symfony/Component/HttpKernel/EventListener/ExceptionListener.php src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php
-rw-r--r--Http/Firewall/AbstractAuthenticationListener.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php
index 92618e5..7fa991c 100644
--- a/Http/Firewall/AbstractAuthenticationListener.php
+++ b/Http/Firewall/AbstractAuthenticationListener.php
@@ -17,6 +17,7 @@ use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerI
use Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface;
use Symfony\Component\Security\Core\SecurityContextInterface;
use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
+use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Exception\SessionUnavailableException;
use Psr\Log\LoggerInterface;