You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertEquals(array('bar', $builder->get('bar'), '%unescape_it%'), $builder->get('foo1')->bar, '->createService() replaces the values in the properties');
@trigger_error('The '.__NAMESPACE__.'\DefaultCsrfProvider is deprecated since version 2.4 and will be removed in version 3.0. Use the \Symfony\Component\Security\Csrf\TokenStorage\NativeSessionTokenStorage class instead.', E_USER_DEPRECATED);
15
17
16
18
/**
@@ -61,7 +63,17 @@ public function generateCsrfToken($intention)
@@ -99,7 +100,7 @@ public function handle(GetResponseEvent $event)
99
100
return;
100
101
}
101
102
102
-
if ($serverDigestMd5 !== $digestAuth->getResponse()) {
103
+
if (!StringUtils::equals($serverDigestMd5, $digestAuth->getResponse())) {
103
104
if (null !== $this->logger) {
104
105
$this->logger->debug('Unexpected response from the DigestAuth received; is the header returning a clear text passwords?', array('expected' => $serverDigestMd5, 'received' => $digestAuth->getResponse()));
0 commit comments