Commit ebcf2fb8 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 323905: "Group" "isn't equal to" boolean chart does not work correctly -…

Bug 323905: "Group" "isn't equal to" boolean chart does not work correctly - Patch by Joel Peshkin <bugreport@peshkin.net> r=vladd a=myk
parent 5ce63a09
...@@ -766,11 +766,14 @@ sub init { ...@@ -766,11 +766,14 @@ sub init {
push(@supptables, push(@supptables,
"LEFT JOIN bug_group_map AS bug_group_map_$chartid " . "LEFT JOIN bug_group_map AS bug_group_map_$chartid " .
"ON bugs.bug_id = bug_group_map_$chartid.bug_id"); "ON bugs.bug_id = bug_group_map_$chartid.bug_id");
$ff = $f = "groups_$chartid.name";
my $ref = $funcsbykey{",$t"};
&$ref;
push(@supptables, push(@supptables,
"LEFT JOIN groups AS groups_$chartid " . "LEFT JOIN groups AS groups_$chartid " .
"ON groups_$chartid.id = bug_group_map_$chartid.group_id"); "ON groups_$chartid.id = bug_group_map_$chartid.group_id " .
$f = "groups_$chartid.name"; "AND $term");
$term = "$ff IS NOT NULL";
}, },
"^attach_data\.thedata,changed" => sub { "^attach_data\.thedata,changed" => sub {
# Searches for attachment data's change must search # Searches for attachment data's change must search
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment