]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 585031: Searching using the "People" section was only using one of the
authorMax Kanat-Alexander <mkanat@bugzilla.org>
Sun, 3 Oct 2010 21:33:12 +0000 (14:33 -0700)
committerMax Kanat-Alexander <mkanat@bugzilla.org>
Sun, 3 Oct 2010 21:33:12 +0000 (14:33 -0700)
selected checkboxes in each column.
r=mkanat, a=mkanat (module owner)

Bugzilla/Search.pm

index fa1e40131c51d2f102154e8b578622d9b9f9833d..d887677b0551e83013e3bc2faba87167b00d1d9f 100644 (file)
@@ -1171,8 +1171,8 @@ sub _convert_special_params_to_chart_params {
     my $and = 0;
     foreach my $or_array (@special_charts) {
         my $or = 0;
-        my $identifier = "$chart-$and-$or";
         while (@$or_array) {
+            my $identifier = "$chart-$and-$or";
             $params->{"field$identifier"} = shift @$or_array;
             $params->{"type$identifier"}  = shift @$or_array;
             $params->{"value$identifier"} = shift @$or_array;