Commit 4c2187f5 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 139759: gets email searches for "cc: list or assignee" working again.

Patch by David Ward <dward@netschools.net> 2xr=myk
parent 82e546e2
......@@ -503,11 +503,9 @@ sub GenerateSQL {
},
"^cc," => sub {
push(@supptables, "cc cc_$chartid");
push(@wherepart, "bugs.bug_id = cc_$chartid.bug_id");
push(@supptables, "LEFT JOIN cc cc_$chartid ON bugs.bug_id = cc_$chartid.bug_id");
push(@supptables, "profiles map_cc_$chartid");
push(@wherepart, "cc_$chartid.who = map_cc_$chartid.userid");
push(@supptables, "LEFT JOIN profiles map_cc_$chartid ON cc_$chartid.who = map_cc_$chartid.userid");
$f = "map_cc_$chartid.login_name";
},
......
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