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

(-)a/C4/Auth_with_shibboleth.pm (-2 / +1 lines)
Lines 84-90 sub get_login_shib { Link Here
84
84
85
    my $matchAttribute = $config->{mapping}->{ $config->{matchpoint} }->{is};
85
    my $matchAttribute = $config->{mapping}->{ $config->{matchpoint} }->{is};
86
86
87
    if ( any { /(^psgi|^plack)/i } keys %ENV ) {
87
    if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) {
88
      $debug and warn $matchAttribute . " value: " . $ENV{"HTTP_".uc($matchAttribute)};
88
      $debug and warn $matchAttribute . " value: " . $ENV{"HTTP_".uc($matchAttribute)};
89
      return $ENV{"HTTP_".uc($matchAttribute)} || '';
89
      return $ENV{"HTTP_".uc($matchAttribute)} || '';
90
    } else {
90
    } else {
91
- 

Return to bug 17776