From 584670c0f713744afc143593e3b810da6a5f6925 Mon Sep 17 00:00:00 2001 From: Dylan Hardison Date: Thu, 30 Jun 2016 14:05:11 -0400 Subject: Bug 1283554 - Odd number of elements in anonymous hash at /data/www/bugzilla.mozilla.org/auth.cgi line 46. --- auth.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auth.cgi') 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); -- cgit v1.2.3-24-g4f1b