From bd80bfa8f133d407da63e9c9b81267bbbb1aae1d Mon Sep 17 00:00:00 2001 From: AndrewCz Date: Mon, 27 Mar 2017 02:50:30 -0400 Subject: [PATCH] Implemented fix of name -> email --- Auth/SamlAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Auth/SamlAuth.php b/Auth/SamlAuth.php index 42f8895..1ee84e0 100644 --- a/Auth/SamlAuth.php +++ b/Auth/SamlAuth.php @@ -74,7 +74,7 @@ public function authenticate(){ //Get attributes for SAML from configModel - $atrb_email = $this->configModel->get('samlauth_name_attribute'); + $atrb_email = $this->configModel->get('samlauth_email_attribute'); $atrb_username = $this->configModel->get('samlauth_username_attribute'); $atrb_firstname = $this->configModel->get('samlauth_firstname_attribute'); $atrb_lastname = $this->configModel->get('samlauth_lastname_attribute');