summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2013-06-11 09:15:38 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-06-11 09:15:38 +0200
commitc61f152e5f3e24fad3e7e7930a3e0e8a8f275ab8 (patch)
treee821c188c56c518562d1d6383d13d13450855e61 /Http
parent693c2395ef2f1d27d04c56bf6172202c90c95697 (diff)
parent58d09b3674e2c0c442fcf13d61869fe072b9bb08 (diff)
downloadsymfony-security-c61f152e5f3e24fad3e7e7930a3e0e8a8f275ab8.zip
symfony-security-c61f152e5f3e24fad3e7e7930a3e0e8a8f275ab8.tar.gz
symfony-security-c61f152e5f3e24fad3e7e7930a3e0e8a8f275ab8.tar.bz2
Merge branch '2.3'
* 2.3: (33 commits) Revert "[Console] ensure exit code between 0-254" Added missing galician (gl) translations fix many-to-many Propel1 ModelChoiceList [Console] ensure exit code between 0-254 Added Greek translation [DomCrawler] Fixed a fatal error when setting a value in a malformed field name. [FrameworkBundle] Fixed OutOfBoundException when session handler_id is null [DependencyInjection] Add support for aliases of aliases + regression test [Console] fix status code when Exception::getCode returns something like 0.1 Fixed doc block on Filesystem::rename Fixed exit code for exceptions with error code 0 [DependencyInjection] Rename ContainerBuilder::$aliases to avoid conflicting with the parent class [DependencyInjection] Remove get*Alias*Service methods from compiled containers [DependencyInjection] Fix aliased access of shared services, fixes #8096 instantiate valid commands only bumped Symfony version to -DEV updated VERSION for 2.3.0 updated CHANGELOG for 2.3.0 [Config] Added tests for the FileResource and DirectoryResource. [Config] Fixed @covers annotation which ignored some of the methods from the code coverage. ... Conflicts: src/Symfony/Component/HttpKernel/Kernel.php
Diffstat (limited to 'Http')
-rw-r--r--Http/Firewall/AnonymousAuthenticationListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/AnonymousAuthenticationListener.php b/Http/Firewall/AnonymousAuthenticationListener.php
index af2213b..59f05ff 100644
--- a/Http/Firewall/AnonymousAuthenticationListener.php
+++ b/Http/Firewall/AnonymousAuthenticationListener.php
@@ -49,7 +49,7 @@ class AnonymousAuthenticationListener implements ListenerInterface
$this->context->setToken(new AnonymousToken($this->key, 'anon.', array()));
if (null !== $this->logger) {
- $this->logger->info(sprintf('Populated SecurityContext with an anonymous Token'));
+ $this->logger->info('Populated SecurityContext with an anonymous Token');
}
}
}