diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Bug.pm | 10 | ||||
-rw-r--r-- | Bugzilla/Config/BugChange.pm | 6 |
2 files changed, 0 insertions, 16 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index e9e73920a..6399e34a4 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1752,11 +1752,6 @@ sub set_assigned_to { } sub reset_assigned_to { my $self = shift; - if (Bugzilla->params->{'commentonreassignbycomponent'} - && !$self->{added_comments}) - { - ThrowUserError('comment_required'); - } my $comp = $self->component_obj; $self->set_assigned_to($comp->default_assignee); } @@ -1997,11 +1992,6 @@ sub set_qa_contact { } sub reset_qa_contact { my $self = shift; - if (Bugzilla->params->{'commentonreassignbycomponent'} - && !$self->{added_comments}) - { - ThrowUserError('comment_required'); - } my $comp = $self->component_obj; $self->set_qa_contact($comp->default_qa_contact); } diff --git a/Bugzilla/Config/BugChange.pm b/Bugzilla/Config/BugChange.pm index 00a234a30..0e518b689 100644 --- a/Bugzilla/Config/BugChange.pm +++ b/Bugzilla/Config/BugChange.pm @@ -87,12 +87,6 @@ sub get_param_list { }, { - name => 'commentonreassignbycomponent', - type => 'b', - default => 0 - }, - - { name => 'commentonduplicate', type => 'b', default => 0 |