summaryrefslogtreecommitdiffstats
path: root/Http
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2015-06-28 19:11:14 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2015-06-28 19:11:14 +0200
commit243e617125554145c199378a0d9616061cf59c57 (patch)
tree504a3f3a70d58d87fbd561d0ff9df21959f85f86 /Http
parentd0547f1a9f1a1f70f4c6ffcf34f489eb7536276a (diff)
parent5cabfecc4c4b5416e7c54ffe7a4fcde2d0db4d75 (diff)
downloadsymfony-security-243e617125554145c199378a0d9616061cf59c57.zip
symfony-security-243e617125554145c199378a0d9616061cf59c57.tar.gz
symfony-security-243e617125554145c199378a0d9616061cf59c57.tar.bz2
Merge branch '2.3' into 2.6
* 2.3: Fix quoting style consistency. [DependencyInjection] Fail when dumping a Definition with no class nor factory Normalizing recursively - see #9096 No change - the normalizeParams is a copy-and-paste of the earlier logic fixes issue with logging array of non-utf8 data fix validation for Maestro UK card numbers
Diffstat (limited to 'Http')
-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 b1008cc..c8c233e 100644
--- a/Http/Firewall/DigestAuthenticationListener.php
+++ b/Http/Firewall/DigestAuthenticationListener.php
@@ -101,7 +101,7 @@ class DigestAuthenticationListener implements ListenerInterface
if ($serverDigestMd5 !== $digestAuth->getResponse()) {
if (null !== $this->logger) {
- $this->logger->debug(sprintf("Expected response: '%s' but received: '%s'; is AuthenticationDao returning clear text passwords?", $serverDigestMd5, $digestAuth->getResponse()));
+ $this->logger->debug(sprintf('Expected response: "%s" but received: "%s"; is AuthenticationDao returning clear text passwords?', $serverDigestMd5, $digestAuth->getResponse()));
}
$this->fail($event, $request, new BadCredentialsException('Incorrect response'));