diff options
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index abc9008e9..47b4e1296 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1458,7 +1458,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 " . |