From: lpsolit%gmail.com <> Date: Thu, 6 Jul 2006 08:49:40 +0000 (+0000) Subject: Bug 343699: votes.cgi: Reference found where even-sized list expected - Patch by... X-Git-Tag: bugzilla-2.23.2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f06ff14577707a46de368d954c44df4e8ad21a1d;p=thirdparty%2Fbugzilla.git Bug 343699: votes.cgi: Reference found where even-sized list expected - Patch by Frédéric Buclin r/a=myk --- diff --git a/votes.cgi b/votes.cgi index 7e72bfcd36..6f01f63452 100755 --- a/votes.cgi +++ b/votes.cgi @@ -259,7 +259,7 @@ sub record_votes { # the ballot box. if (scalar(@buglist)) { my %prodcount; - my %products = {}; + my %products; # XXX - We really need a $bug->product() method. foreach my $bug_id (@buglist) { my $bug = new Bugzilla::Bug($bug_id, $who);