From: lpsolit%gmail.com <> Date: Thu, 21 Feb 2008 22:23:54 +0000 (+0000) Subject: Bug 418518: Search links in editkeywords.cgi and describekeywords.cgi generate incorr... X-Git-Tag: bugzilla-3.1.3~306 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0eaa3f8066cc54450b73320af1d4c02b316de35d;p=thirdparty%2Fbugzilla.git Bug 418518: Search links in editkeywords.cgi and describekeywords.cgi generate incorrect SQL queries - Patch by Jesse Clark r/a=mkanat --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 6db637b5f3..49aa8bfbe0 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -27,6 +27,7 @@ # Max Kanat-Alexander # Joel Peshkin # Lance Larsh +# Jesse Clark use strict; @@ -1771,7 +1772,7 @@ sub _keywords_nonchanged { my $self = shift; my %func_args = @_; my ($chartid, $v, $ff, $f, $t, $term, $supptables) = - @func_args{qw(chartid v ff f t term)}; + @func_args{qw(chartid v ff f t term supptables)}; my @list; my $table = "keywords_$$chartid";