From 619eae00b6b77bbfdbedab05b31ee0e88c6ff059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rimas=20Misevi=C4=8Dius?= <rmisev3@gmail.com> Date: Thu, 1 Feb 2018 09:12:14 +0200 Subject: [PATCH] Fix example in the ScopeFromAttribute doc Change the source attribute to `eduPersonPrincipalName` and add missing commas. --- modules/core/docs/authproc_scopefromattribute.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/docs/authproc_scopefromattribute.md b/modules/core/docs/authproc_scopefromattribute.md index 0b7f92b98..5eba851b9 100644 --- a/modules/core/docs/authproc_scopefromattribute.md +++ b/modules/core/docs/authproc_scopefromattribute.md @@ -25,7 +25,7 @@ Set the `scope` attribute to the scope from the `eduPersonPrincipalName` attribu 'authproc' => array( 50 => array( 'class' => 'core:ScopeFromAttribute', - 'sourceAttribute' => 'eduPersonPrincipal' - 'targetAttribute' => 'scope' + 'sourceAttribute' => 'eduPersonPrincipalName', + 'targetAttribute' => 'scope', ), ), -- GitLab