Fixed missing parens.

This commit is contained in:
Chris 2012-03-20 12:56:50 +00:00
parent bfd335f7cd
commit c893f8094e

View File

@ -199,7 +199,7 @@ sub valid_user {
}
# Is the user allowed to proceed to authentication?
return undef unless($self -> {"app"} -> pre_authenticate($username, $self);
return undef unless($self -> {"app"} -> pre_authenticate($username, $self));
my $methods = $self -> {"methods"} -> available_methods(1);