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
4abcff37
Commit
4abcff37
authored
Oct 08, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug 15808 -- previous change had busted querying of CC.
parent
7be2f1fb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
buglist.cgi
buglist.cgi
+2
-2
No files found.
buglist.cgi
View file @
4abcff37
...
...
@@ -209,7 +209,7 @@ bugs.bug_status";
$query
.=
"
from bugs left join votes
using(bug_id)
,
from bugs left join votes
on bugs.bug_id = votes.bug_id
,
profiles assign,
profiles report
left join profiles qacont on bugs.qa_contact = qacont.userid,
...
...
@@ -228,7 +228,7 @@ if ((defined $::FORM{'emailcc1'} && $::FORM{'emailcc1'}) ||
# We need to poke into the CC table. Do weird SQL left join stuff so that
# we can look in the CC table, but won't reject any bugs that don't have
# any CC fields.
$query
=~
s/bugs left join
,/bugs left join cc using (bug_id) left join profiles ccname on cc.who = ccname.userid left join,
/
;
$query
=~
s/bugs left join
/bugs left join cc on bugs.bug_id = cc.bug_id left join profiles ccname on cc.who = ccname.userid left join
/
;
}
if
(
defined
$::FORM
{
'sql'
})
{
...
...
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