summaryrefslogtreecommitdiffstats
path: root/Http/Firewall
diff options
context:
space:
mode:
authorNicolas Grekas <nicolas.grekas@gmail.com>2015-04-18 17:11:06 +0200
committerNicolas Grekas <nicolas.grekas@gmail.com>2015-04-18 17:11:06 +0200
commitc17ff740851d23d48e26ff922b45d0c695081015 (patch)
tree761a05ee9bf58ec4ebf221bd5fe85da74db876fa /Http/Firewall
parent6a2e4f33d640ac68d3ce7720853084546904d039 (diff)
parent957136819fa019626b0f009152a53d094972bcdf (diff)
downloadsymfony-security-c17ff740851d23d48e26ff922b45d0c695081015.zip
symfony-security-c17ff740851d23d48e26ff922b45d0c695081015.tar.gz
symfony-security-c17ff740851d23d48e26ff922b45d0c695081015.tar.bz2
Merge branch '2.6' into 2.7
* 2.6: [Routing][DependencyInjection] Support .yaml extension in YAML loaders [DX] improve file loader error for router/other resources in bundle [FrameworkBundle] Initialize translator with the default locale. [FrameworkBundle] Fix Routing\DelegatingLoader resiliency to fatal errors [2.6][Translation] remove duplicate code for loading catalogue. [HttpKernel] Cleanup ExceptionListener CS fixes [DependencyInjection] Show better error when the Yaml component is not installed [2.3] SCA for Components - reference mismatches [Debug] Scream as LogLevel::DEBUG (but for fatal errors / uncaught exceptions) [2.3] Static Code Analysis for Components [WebProfilerBundle] Fix resiliency to exceptions thrown by the url generator [Translation] LoggingTranslator simplifications [Translation][fixed test] refresh cache when resources are no longer fresh. [FrameworkBundle] Fixed server:start --router relative path issue #14124 [FrameworkBundle] improve usage of Table helper [Validator] Added missing Simplified Chinese (zh_CN) translations [FrameworkBundle] Workaround php -S ignoring auto_prepend_file Conflicts: src/Symfony/Bundle/FrameworkBundle/Tests/Translation/TranslatorTest.php src/Symfony/Component/Console/Helper/Table.php src/Symfony/Component/Translation/LoggingTranslator.php
Diffstat (limited to 'Http/Firewall')
-rw-r--r--Http/Firewall/DigestAuthenticationListener.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/Firewall/DigestAuthenticationListener.php b/Http/Firewall/DigestAuthenticationListener.php
index e459152..c5aaca3 100644
--- a/Http/Firewall/DigestAuthenticationListener.php
+++ b/Http/Firewall/DigestAuthenticationListener.php
@@ -161,7 +161,7 @@ class DigestData
public function getUsername()
{
- return strtr($this->elements['username'], array("\\\"" => "\"", "\\\\" => "\\"));
+ return strtr($this->elements['username'], array('\\"' => '"', '\\\\' => '\\'));
}
public function validateAndDecode($entryPointKey, $expectedRealm)