From 8fa425e3ca71daef7975bc975537f3e02769fc4b Mon Sep 17 00:00:00 2001 From: Frank Kuipers Date: Sun, 12 Apr 2020 10:28:39 +0200 Subject: [PATCH] Fixed authentication issue --- composer.json | 2 +- src/SOLOpenIdClient.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 25e84c9..78a54f3 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ ], "homepage": "https://github.com/ScoutingRudyardKipling/SOLAuthenticator", "license": "MIT", - "version": "1.0.2", + "version": "1.0.3", "authors": [ { "name": "Mewp", diff --git a/src/SOLOpenIdClient.php b/src/SOLOpenIdClient.php index a636669..58198e1 100644 --- a/src/SOLOpenIdClient.php +++ b/src/SOLOpenIdClient.php @@ -48,7 +48,7 @@ public function setUserIdentity($username) $namespace = explode('/', $username); $username = array_pop($namespace); - $this->identity = self::$snl_login_namespace . strtolower($username); + $this->claimed_id = $this->identity = self::$snl_login_namespace . strtolower($username); return $this; } @@ -107,4 +107,4 @@ protected function sregParams() ]; } -} \ No newline at end of file +}