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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
47741a5b
Commit
47741a5b
authored
Jun 06, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 28458: "NEW" bugs were not getting CC or QA Contact information displayed.
Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
parent
45b240a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
checksetup.pl
checksetup.pl
+4
-4
doeditparams.cgi
doeditparams.cgi
+7
-1
No files found.
checksetup.pl
View file @
47741a5b
...
...
@@ -1089,9 +1089,9 @@ AddFDef("rep_platform", "Platform", 1);
AddFDef
(
"bug_file_loc"
,
"URL"
,
1
);
AddFDef
(
"op_sys"
,
"OS/Version"
,
1
);
AddFDef
(
"bug_status"
,
"Status"
,
1
);
AddFDef
(
"status_whiteboard"
,
"Status Whiteboard"
,
1
);
AddFDef
(
"keywords"
,
"Keywords"
,
1
);
AddFDef
(
"resolution"
,
"Resolution"
,
1
);
AddFDef
(
"status_whiteboard"
,
"Status Whiteboard"
,
0
);
AddFDef
(
"keywords"
,
"Keywords"
,
0
);
AddFDef
(
"resolution"
,
"Resolution"
,
0
);
AddFDef
(
"bug_severity"
,
"Severity"
,
1
);
AddFDef
(
"priority"
,
"Priority"
,
1
);
AddFDef
(
"component"
,
"Component"
,
1
);
...
...
@@ -1099,7 +1099,7 @@ AddFDef("assigned_to", "AssignedTo", 1);
AddFDef
(
"reporter"
,
"ReportedBy"
,
1
);
AddFDef
(
"votes"
,
"Votes"
,
0
);
AddFDef
(
"qa_contact"
,
"QAContact"
,
0
);
AddFDef
(
"cc"
,
"CC"
,
0
);
AddFDef
(
"cc"
,
"CC"
,
1
);
AddFDef
(
"dependson"
,
"BugsThisDependsOn"
,
0
);
AddFDef
(
"blocked"
,
"OtherBugsDependingOnThis"
,
0
);
AddFDef
(
"attachments.description"
,
"Attachment description"
,
0
);
...
...
doeditparams.cgi
View file @
47741a5b
...
...
@@ -67,7 +67,13 @@ foreach my $i (@::param_list) {
print
"Changed $i.<br>\n"
;
# print "Old: '" . url_quote(Param($i)) . "'<BR>\n";
# print "New: '" . url_quote($::FORM{$i}) . "'<BR>\n";
$::param
{
$i
}
=
$::FORM
{
$i
}
$::param
{
$i
}
=
$::FORM
{
$i
};
# If the useqacontact Param is changing, update the mailheader
if
(
$i
eq
'useqacontact'
)
{
print
" - Updating mailhead information<br>\n"
;
SendSQL
(
"UPDATE fielddefs SET mailhead = "
.
SqlQuote
(
$::param
{
$i
})
.
"WHERE name = 'qa_contact'"
);
}
}
}
...
...
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