From be0c22d858a860567d6c060f4cabd80c15d66c6e Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sun, 4 Jan 2009 18:21:05 +0000 Subject: [PATCH] =?utf8?q?Bug=20472047:=20Search=20containing=20"%Complete?= =?utf8?q?"=20boolean=20chart=20fails=20-=20Patch=20by=20Fr=C3=83=C2=A9d?= =?utf8?q?=C3=83=C2=A9ric=20Buclin=20=20r=3Dwurblzap=20?= =?utf8?q?a=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 5636e429de..499cc071f9 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1421,7 +1421,7 @@ sub _percentage_complete { } if ($oper ne "noop") { my $table = "longdescs_$$chartid"; - if(lsearch(@$fields, "bugs.remaining_time") == -1) { + if(lsearch($fields, "bugs.remaining_time") == -1) { push(@$fields, "bugs.remaining_time"); } push(@$supptables, "LEFT JOIN longdescs AS $table " . -- 2.47.2