summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-02-13 12:05:13 +0100
committerbbaetz%student.usyd.edu.au <>2002-02-13 12:05:13 +0100
commitf6d4ac72db722002059a3495b413cd06f05fbf49 (patch)
treed4e69a75b976ff0cc821291c9280698641258724 /process_bug.cgi
parente1235d08fc52ff4cb914efecda9b15c2b7943f5a (diff)
downloadbugzilla-f6d4ac72db722002059a3495b413cd06f05fbf49.tar.gz
bugzilla-f6d4ac72db722002059a3495b413cd06f05fbf49.tar.xz
Bug 97471 - The assignee and qa contact should always be able to see their
bugs r=justdave, afranke
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi10
1 files changed, 1 insertions, 9 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index 15daf152b..f2abb0390 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -596,7 +596,7 @@ if (defined $::FORM{'qa_contact'}) {
# If the user is submitting changes from show_bug.cgi for a single bug,
# and that bug is restricted to a group, process the checkboxes that
-# allowed the user to set whether or not the reporter, assignee, QA contact,
+# allowed the user to set whether or not the reporter
# and cc list can see the bug even if they are not members of all groups
# to which the bug is restricted.
if ( $::FORM{'id'} ) {
@@ -608,14 +608,6 @@ if ( $::FORM{'id'} ) {
$::query .= "reporter_accessible = $::FORM{'reporter_accessible'}";
DoComma();
- $::FORM{'assignee_accessible'} = $::FORM{'assignee_accessible'} ? '1' : '0';
- $::query .= "assignee_accessible = $::FORM{'assignee_accessible'}";
-
- DoComma();
- $::FORM{'qacontact_accessible'} = $::FORM{'qacontact_accessible'} ? '1' : '0';
- $::query .= "qacontact_accessible = $::FORM{'qacontact_accessible'}";
-
- DoComma();
$::FORM{'cclist_accessible'} = $::FORM{'cclist_accessible'} ? '1' : '0';
$::query .= "cclist_accessible = $::FORM{'cclist_accessible'}";
}