diff options
-rwxr-xr-x | www/login.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/login.pl b/www/login.pl index 852f57c..9e0467e 100755 --- a/www/login.pl +++ b/www/login.pl @@ -61,7 +61,7 @@ while (my $cgi = new CGI::Fast) { my $email = $cgi->param('email') or die "No email address provided"; my $password = $cgi->param('password') or die "Empty password"; - for my $user ([email_users($email)]) { + for my $user (email_users($email)) { #say STDERR "Trying user: $user"; if (check_password($user, $password)) { $session->param('user', $user); |