summaryrefslogtreecommitdiffstats
path: root/Core/Authentication/AuthenticationProviderManager.php
diff options
context:
space:
mode:
authorBernhard Schussek <bernhard.schussek@symfony-project.com>2011-03-17 12:34:12 +0100
committerBernhard Schussek <bernhard.schussek@symfony-project.com>2011-03-17 12:34:12 +0100
commit2194399ddf1b18d1509aabfb744d263ac40d1ecd (patch)
tree0fc528c8ec536041017ddb805e1c1ee95d566d4a /Core/Authentication/AuthenticationProviderManager.php
parent68bcc66f88d402019e800639e47c6c5db16629e0 (diff)
parentaf0bc0a3a868f2e9f992fb7479a6b45b05087403 (diff)
downloadsymfony-security-2194399ddf1b18d1509aabfb744d263ac40d1ecd.zip
symfony-security-2194399ddf1b18d1509aabfb744d263ac40d1ecd.tar.gz
symfony-security-2194399ddf1b18d1509aabfb744d263ac40d1ecd.tar.bz2
Merge remote branch 'symfony/master' into event-manager
Conflicts: src/Symfony/Bundle/AsseticBundle/CacheWarmer/AssetWriterCacheWarmer.php src/Symfony/Bundle/AsseticBundle/Tests/CacheWarmer/AssetWriterCacheWarmerTest.php src/Symfony/Bundle/FrameworkBundle/Profiler/ProfilerListener.php src/Symfony/Bundle/FrameworkBundle/Resources/config/profiling.xml src/Symfony/Component/HttpKernel/HttpKernel.php src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php src/Symfony/Component/Security/Http/Firewall/AbstractPreAuthenticatedListener.php
Diffstat (limited to 'Core/Authentication/AuthenticationProviderManager.php')
-rw-r--r--Core/Authentication/AuthenticationProviderManager.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/Core/Authentication/AuthenticationProviderManager.php b/Core/Authentication/AuthenticationProviderManager.php
index 1d85e87..a82b9fb 100644
--- a/Core/Authentication/AuthenticationProviderManager.php
+++ b/Core/Authentication/AuthenticationProviderManager.php
@@ -59,6 +59,10 @@ class AuthenticationProviderManager implements AuthenticationManagerInterface
try {
$result = $provider->authenticate($token);
+
+ if (null !== $result) {
+ break;
+ }
} catch (AccountStatusException $e) {
$e->setExtraInformation($token);