https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31393
--- Comment #3 from Matthias Meusburger <[email protected]> --- Hi, Actually, having only "content" or only "is" is valid. "is" will get the value from the matching Shibboleth attribute. "content" is a fixed string. If you use both, Koha will first check if there is an attribute matching "is", and then use "content": C4/Auth_with_shibboleth.pm, line 131: $borrower{$key} = ( $entry->{'is'} && $ENV{"HTTP_" . uc($entry->{'is'}) } ) || $entry->{'content'} || ''; -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
