From: jake%acutex.net <> Date: Wed, 20 Feb 2002 04:50:18 +0000 (+0000) Subject: Bug 118774 - The keyword field wasn't showing up because have_keywords wasn't being... X-Git-Tag: bugzilla-2.16rc1~218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97bea3c759614d69f341e56dd5a2bb3641c43f94;p=thirdparty%2Fbugzilla.git Bug 118774 - The keyword field wasn't showing up because have_keywords wasn't being properly set before passing it on to the template. Patch by Jeff Lawson r= jake, justdave --- diff --git a/query.cgi b/query.cgi index b41620d363..fe6fe1622c 100755 --- a/query.cgi +++ b/query.cgi @@ -288,7 +288,7 @@ if (Param('usetargetmilestone')) { $vars->{'target_milestone'} = \@milestones; } -$vars->{'have_keywords'} = scalar(%::legal_keywords); +$vars->{'have_keywords'} = scalar(@::legal_keywords); push @::legal_resolution, "---"; # Oy, what a hack. shift @::legal_resolution;