From 8ca2304eea840e37bcf182f21e2c14bd21ad9cd7 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Mon, 23 Jul 2018 11:24:13 -0400 Subject: more tidy --- Bugzilla/Quantum/Plugin/BasicAuth.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Bugzilla/Quantum/Plugin/BasicAuth.pm') diff --git a/Bugzilla/Quantum/Plugin/BasicAuth.pm b/Bugzilla/Quantum/Plugin/BasicAuth.pm index bc79c89ef..e17273404 100644 --- a/Bugzilla/Quantum/Plugin/BasicAuth.pm +++ b/Bugzilla/Quantum/Plugin/BasicAuth.pm @@ -16,15 +16,15 @@ sub register { $app->renderer->add_helper( basic_auth => sub { - my ($c, $realm, $auth_user, $auth_pass) = @_; + my ( $c, $realm, $auth_user, $auth_pass ) = @_; my $req = $c->req; - my ($user, $password) = $req->url->to_abs->userinfo =~ /^([^:]+):(.*)/; + my ( $user, $password ) = $req->url->to_abs->userinfo =~ /^([^:]+):(.*)/; - unless ($realm && $auth_user && $auth_pass) { + unless ( $realm && $auth_user && $auth_pass ) { croak 'basic_auth() called with missing parameters.'; } - unless ($user eq $auth_user && $password eq $auth_pass) { + unless ( $user eq $auth_user && $password eq $auth_pass ) { WARN('username and password do not match'); $c->res->headers->www_authenticate("Basic realm=\"$realm\""); $c->res->code(401); @@ -37,4 +37,4 @@ sub register { ); } -1; +1; \ No newline at end of file -- cgit v1.2.3-24-g4f1b