diff options
author | bugreport%peshkin.net <> | 2004-07-21 06:46:46 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-07-21 06:46:46 +0200 |
commit | 899f61d64550dfd9452972cea600505cc8c7d4e3 (patch) | |
tree | 344035c8399a1496554817321a98430ba0a272c9 /query.cgi | |
parent | 9bbbeca380788e11cbc57b310988b16d6b77586a (diff) | |
download | bugzilla-899f61d64550dfd9452972cea600505cc8c7d4e3.tar.gz bugzilla-899f61d64550dfd9452972cea600505cc8c7d4e3.tar.xz |
Bug 245272: Add per-chart negation to boolean searches
r=justdave,myk,timeless
a=myk
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -357,7 +357,7 @@ for (my $chart = 0; $::FORM{"field$chart-0-0"}; $chart++) { } push(@rows, \@cols); } - push(@charts, \@rows); + push(@charts, {'rows' => \@rows, 'negate' => $::FORM{"negate$chart"}}); } $default{'charts'} = \@charts; |