diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-20 08:22:39 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-08-20 08:22:39 +0200 |
commit | 4fcb7eaf139a4d2cbd0f54574e6c51a0fe852ef1 (patch) | |
tree | 4d878e6d4eb5c1baab95cd02e3eb95ee4182a399 /src/Wallabag/ApiBundle/Security/Firewall | |
parent | 34437f408c5b7b590aded6795d7ce01bfbfc7711 (diff) | |
parent | 8ce32af61229eec8f4cc34b207273d47f60adc48 (diff) | |
download | wallabag-4fcb7eaf139a4d2cbd0f54574e6c51a0fe852ef1.tar.gz wallabag-4fcb7eaf139a4d2cbd0f54574e6c51a0fe852ef1.tar.zst wallabag-4fcb7eaf139a4d2cbd0f54574e6c51a0fe852ef1.zip |
Merge pull request #1383 from wallabag/cs
CS
Diffstat (limited to 'src/Wallabag/ApiBundle/Security/Firewall')
-rw-r--r-- | src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php b/src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php index 50587837..2fcbe014 100644 --- a/src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php +++ b/src/Wallabag/ApiBundle/Security/Firewall/WsseListener.php | |||
@@ -36,9 +36,9 @@ class WsseListener implements ListenerInterface | |||
36 | $token = new WsseUserToken(); | 36 | $token = new WsseUserToken(); |
37 | $token->setUser($matches[1]); | 37 | $token->setUser($matches[1]); |
38 | 38 | ||
39 | $token->digest = $matches[2]; | 39 | $token->digest = $matches[2]; |
40 | $token->nonce = $matches[3]; | 40 | $token->nonce = $matches[3]; |
41 | $token->created = $matches[4]; | 41 | $token->created = $matches[4]; |
42 | 42 | ||
43 | try { | 43 | try { |
44 | $authToken = $this->authenticationManager->authenticate($token); | 44 | $authToken = $this->authenticationManager->authenticate($token); |