Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
4c2187f5
Commit
4c2187f5
authored
Apr 27, 2002
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
buglist.cgi
buglist.cgi
+2
-4
No files found.
buglist.cgi
View file @
4c2187f5
...
...
@@ -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"
;
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment