mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-14 14:02:47 +00:00
Fix for bug 139759: gets email searches for "cc: list or assignee" working again.
Patch by David Ward <dward@netschools.net> 2xr=myk
This commit is contained in:
parent
e4dc4740a3
commit
7be55a6146
@ -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";
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user