View | Details | Raw Unified | Return to bug 12027
Collapse All | Expand All

(-)a/C4/Auth.pm (-1 / +1 lines)
Lines 980-986 sub checkauth { Link Here
980
            my $shibSuccess = 0;
980
            my $shibSuccess = 0;
981
            my ( $return, $cardnumber );
981
            my ( $return, $cardnumber );
982
982
983
	    # If shib is enabled and we have a shib login, does the login match a valid koha user
983
            # If shib is enabled and we have a shib login, does the login match a valid koha user
984
            if ( $shib && $shib_login ) {
984
            if ( $shib && $shib_login ) {
985
                my $retuserid;
985
                my $retuserid;
986
986
(-)a/C4/Auth_with_shibboleth.pm (-3 / +2 lines)
Lines 311-317 Given a shib_login attribute, this routine checks for a matching local user and Link Here
311
311
312
  _get_uri();
312
  _get_uri();
313
313
314
A sugar function to that simply returns the current page URI with appropriate protocal attached
314
A sugar function to that simply returns the current page URI with appropriate protocol attached
315
315
316
This routine is NOT exported
316
This routine is NOT exported
317
317
Lines 319-325 This routine is NOT exported Link Here
319
319
320
  my $config = _get_shib_config();
320
  my $config = _get_shib_config();
321
321
322
A sugar function that checks for a valid sibboleth configuration, and if found returns a hashref of it's contents
322
A sugar function that checks for a valid shibboleth configuration, and if found returns a hashref of it's contents
323
323
324
This routine is NOT exported
324
This routine is NOT exported
325
325
326
- 

Return to bug 12027