diff options
author | Dylan Hardison <dylan@mozilla.com> | 2016-06-30 20:05:11 +0200 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2016-06-30 20:05:34 +0200 |
commit | 584670c0f713744afc143593e3b810da6a5f6925 (patch) | |
tree | 34c8a918ecbb5910647eea22f68458160799dfe1 /auth.cgi | |
parent | 7c42dc6972e69b31411fbfac7e2ef0ea9242e9d4 (diff) | |
download | bugzilla-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-x | auth.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |