Skip to content

Commit

Permalink
Small change for osdn-test
Browse files Browse the repository at this point in the history
  • Loading branch information
pudge committed Mar 10, 2004
1 parent f47977f commit b81a79e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Slash/Apache/User/User.pm
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,11 @@ sub handler {
# allowed to make the attempt on the SSL server.
# Logging in means the users.pl script and either
# an empty op or the 'userlogin' op.
$uri =~ m{^/users\.pl}
&& (!$form->{op} || $form->{op} eq 'userlogin')
(
$uri =~ m{^/osdn-test/}
||
$uri =~ m{^/(?:users|login)\.pl}
) && (!$form->{op} || $form->{op} eq 'userlogin')
)
) {
my $ans = $constants->{allow_nonadmin_ssl};
Expand Down

0 comments on commit b81a79e

Please sign in to comment.