From a665c902eda8e424f8f2abe2641e1857746111a1 Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Tue, 5 Nov 2019 19:27:40 +0100 Subject: [PATCH] Fix exampleauth; closes #1225 --- modules/exampleauth/lib/Auth/Source/External.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/exampleauth/lib/Auth/Source/External.php b/modules/exampleauth/lib/Auth/Source/External.php index 0642e3e77..60c2ebfef 100644 --- a/modules/exampleauth/lib/Auth/Source/External.php +++ b/modules/exampleauth/lib/Auth/Source/External.php @@ -129,7 +129,7 @@ class External extends \SimpleSAML\Auth\Source * First we add the identifier of this authentication source * to the state array, so that we know where to resume. */ - $state['exampleauth:AuthID'] = self::AUTHID; + $state['exampleauth:AuthID'] = $this->authId; /* * We need to save the $state-array, so that we can resume the -- GitLab