summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-02-05 07:58:17 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2015-02-05 07:58:17 +0100
commita83c8a68db8510d9d5f0a62bcb56e45625bc19d7 (patch)
tree663a0174c2fb50fd8bf51dc631c263fa19669987
parent9c940b6c6a370250a31b00664c088bb14d9e696f (diff)
parent3ab3e7fe1a03c043d03d6bac5666e9cbb51caa16 (diff)
downloadsymfony-security-a83c8a68db8510d9d5f0a62bcb56e45625bc19d7.zip
symfony-security-a83c8a68db8510d9d5f0a62bcb56e45625bc19d7.tar.gz
symfony-security-a83c8a68db8510d9d5f0a62bcb56e45625bc19d7.tar.bz2
Merge branch '2.6' into 2.7
* 2.6: (46 commits) fixxed order of usage [2.7] [Form] Replaced calls to array_search() by in_array() where is no need to get the index [Process] Make test AbstractProcessTest::testStartAfterATimeout useful again removed non-sense example Fixes small typo. [Validator] Remove unnecessary include in tests [HttpFoundation] minor: clarify Request::getUrlencodedPrefix() regex fixed typo [Validator] fix DOS-style line endings Drop useless execution bit bumped Symfony version to 2.6.5 [Serializer] update changelog updated VERSION for 2.6.4 updated CHANGELOG for 2.6.4 bumped Symfony version to 2.5.11 [HttpKernel] Added use of provided by #12022 method to instantiate controller class in bundle's controller resolver updated VERSION for 2.5.10 updated CHANGELOG for 2.5.10 [Validator] Add a Russian translation for invalid charset message [2.3] [Validator] spanish translation for invalid charset message ... Conflicts: src/Symfony/Bridge/Doctrine/Validator/Constraints/UniqueEntityValidator.php src/Symfony/Component/HttpKernel/Exception/FatalErrorException.php src/Symfony/Component/HttpKernel/Exception/FlattenException.php src/Symfony/Component/HttpKernel/Kernel.php src/Symfony/Component/Routing/Tests/Generator/UrlGeneratorTest.php src/Symfony/Component/Validator/Resources/translations/validators.de.xlf src/Symfony/Component/Validator/Resources/translations/validators.en.xlf src/Symfony/Component/Validator/Resources/translations/validators.es.xlf src/Symfony/Component/Validator/Resources/translations/validators.fr.xlf src/Symfony/Component/Validator/Resources/translations/validators.pl.xlf src/Symfony/Component/Validator/Resources/translations/validators.ru.xlf src/Symfony/Component/Validator/Resources/translations/validators.sl.xlf
-rw-r--r--Core/SecurityContext.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/SecurityContext.php b/Core/SecurityContext.php
index 222e5aa..27e85c5 100644
--- a/Core/SecurityContext.php
+++ b/Core/SecurityContext.php
@@ -60,7 +60,7 @@ class SecurityContext implements SecurityContextInterface
}
if ($oldSignature) {
- // renamed for clearity
+ // renamed for clarity
$authenticationManager = $tokenStorage;
$accessDecisionManager = $authorizationChecker;
$tokenStorage = new TokenStorage();