summaryrefslogtreecommitdiffstats
path: root/auth.cgi
diff options
context:
space:
mode:
authorDylan Hardison <dylan@mozilla.com>2016-06-30 20:05:11 +0200
committerDylan Hardison <dylan@mozilla.com>2016-06-30 20:05:34 +0200
commit584670c0f713744afc143593e3b810da6a5f6925 (patch)
tree34c8a918ecbb5910647eea22f68458160799dfe1 /auth.cgi
parent7c42dc6972e69b31411fbfac7e2ef0ea9242e9d4 (diff)
downloadbugzilla-584670c0f713744afc143593e3b810da6a5f6925.tar.gz
bugzilla-584670c0f713744afc143593e3b810da6a5f6925.tar.xz
Bug 1283554 - Odd number of elements in anonymous hash at /data/www/bugzilla.mozilla.org/auth.cgi line 46.
Diffstat (limited to 'auth.cgi')
-rwxr-xr-xauth.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth.cgi b/auth.cgi
index 050280f5f..05ec79b5c 100755
--- a/auth.cgi
+++ b/auth.cgi
@@ -44,7 +44,7 @@ ThrowUserError("auth_delegation_invalid_description")
my $callback_uri = URI->new($callback);
$callback_uri->scheme =~ /^https?$/
- or ThrowUserError('auth_delegation_illegal_protocol', { protocol => $callback_uri->scheme });
+ or ThrowUserError('auth_delegation_illegal_protocol', { protocol => scalar $callback_uri->scheme });
my $callback_base = $callback_uri->clone;
$callback_base->query(undef);