summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Plugin/BasicAuth.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-07-23 17:24:13 +0200
committerDylan William Hardison <dylan@hardison.net>2018-08-20 23:52:51 +0200
commit8d59839660e4aa848c32295c1851bb0180f90116 (patch)
treefbfa5fc805c7594d6d08a917a40ba5a5611a7bd6 /Bugzilla/Quantum/Plugin/BasicAuth.pm
parent0108df4cc381df0b013addaed565595b8bb23299 (diff)
downloadbugzilla-8d59839660e4aa848c32295c1851bb0180f90116.tar.gz
bugzilla-8d59839660e4aa848c32295c1851bb0180f90116.tar.xz
more tidy
Diffstat (limited to 'Bugzilla/Quantum/Plugin/BasicAuth.pm')
-rw-r--r--Bugzilla/Quantum/Plugin/BasicAuth.pm10
1 files changed, 5 insertions, 5 deletions
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