summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-12-10 19:39:58 +0100
committerlpsolit%gmail.com <>2008-12-10 19:39:58 +0100
commit15528ad8472cc0244cb2c7d9b6109c0b9d132f20 (patch)
tree4c27da0bcb6fe7423f84a1d99c013dcbe24bc608 /Bugzilla/Bug.pm
parent55de41cf4acb5fcc3a981f8b3c2777323a8f5359 (diff)
downloadbugzilla-15528ad8472cc0244cb2c7d9b6109c0b9d132f20.tar.gz
bugzilla-15528ad8472cc0244cb2c7d9b6109c0b9d132f20.tar.xz
Bug 399076: Remove the 'commentonreassignbycomponent' parameter - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm10
1 files changed, 0 insertions, 10 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);
}