Bug 36575: (QA follow-up) Shibboleth POD and checkpw_internal call
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
eeb0f39686
commit
897b4a2c15
2 changed files with 3 additions and 3 deletions
|
@ -2039,8 +2039,8 @@ sub checkpw {
|
|||
|
||||
# INTERNAL AUTH
|
||||
@return = checkpw_internal( $userid, $password, $no_set_userenv );
|
||||
$passwd_ok = 1 if $return[0] > 0; # 1 or 2
|
||||
$patron = $return[3];
|
||||
$passwd_ok = $return[0];
|
||||
$patron = $passwd_ok ? $return[3] : undef;
|
||||
}
|
||||
|
||||
if ( defined $userid && !$patron ) {
|
||||
|
|
|
@ -409,7 +409,7 @@ This routine is NOT exported
|
|||
|
||||
=head2 _autocreate
|
||||
|
||||
my ( $retval, $retcard, $retuserid ) = _autocreate( $config, $match );
|
||||
my ( $retval, $retcard, $retuserid, $patron ) = _autocreate( $config, $match, $patron );
|
||||
|
||||
Given a shibboleth attribute reference and a userid this internal routine will add the given user to Koha and return their user credentials.
|
||||
|
||||
|
|
Loading…
Reference in a new issue