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

(-)a/C4/Auth_with_shibboleth.pm (-2 / +16 lines)
Lines 49-55 sub shib_ok { Link Here
49
    return 0;
49
    return 0;
50
}
50
}
51
51
52
53
# Logout from Shibboleth
52
# Logout from Shibboleth
54
sub logout_shib {
53
sub logout_shib {
55
    my ($query) = @_;
54
    my ($query) = @_;
Lines 291-296 Given a database handle and a shib_login attribute, this routine checks for a ma Link Here
291
290
292
  my ( $retval, $retcard, $retuserid ) = C4::Auth_with_shibboleth::checkpw_shib( $shib_login );
291
  my ( $retval, $retcard, $retuserid ) = C4::Auth_with_shibboleth::checkpw_shib( $shib_login );
293
292
293
=head2 _get_uri
294
295
  _get_uri();
296
297
A sugar function to that simply returns the current page URI with appropriate protocal attached
298
299
This routine is NOT exported
300
301
=head2 _get_shib_config
302
303
  my $config = _get_shib_config();
304
305
A sugar function that checks for a valid sibboleth configuration, and if found returns a hashref of it's contents
306
307
This routine is NOT exported
308
294
=head2 _autocreate
309
=head2 _autocreate
295
310
296
  my ( $retval, $retcard, $retuserid ) = _autocreate( $dbh, $shib, $userid );
311
  my ( $retval, $retcard, $retuserid ) = _autocreate( $dbh, $shib, $userid );
297
- 

Return to bug 12027