aboutsummaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
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'}";
}