Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-11-24 17:25:44 +0300
committerGitHub <noreply@github.com>2020-11-24 17:25:44 +0300
commit1c2be57e2089ef2972fbef4be676a6dfb0da1de9 (patch)
tree827dc4bafb7ab60a3993dcac44874b04349f0874 /lib/Controller
parent74a9e02236b21f28254a38edb4088a9490557cd2 (diff)
parentc318b9421f541c884f06da82ae6320b5e0b4e2b1 (diff)
Merge pull request #468 from orandev/patch-1
Fix incorrect key name in "Login flow fix"
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/SAMLController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/SAMLController.php b/lib/Controller/SAMLController.php
index d9b7b89a..16ba47f3 100644
--- a/lib/Controller/SAMLController.php
+++ b/lib/Controller/SAMLController.php
@@ -193,7 +193,7 @@ class SAMLController extends Controller {
$flowData['cf1'] = $this->session->get(ClientFlowLoginController::STATE_NAME);
} else if ($this->session->get(ClientFlowLoginV2Controller::TOKEN_NAME) !== null) {
$flowData['cf2'] = [
- 'name' => $this->session->get(ClientFlowLoginV2Controller::TOKEN_NAME),
+ 'token' => $this->session->get(ClientFlowLoginV2Controller::TOKEN_NAME),
'state' => $this->session->get(ClientFlowLoginV2Controller::STATE_NAME),
];
}