|
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 |
- |
|
|