summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-12-10 19:35:59 +0100
committerlpsolit%gmail.com <>2008-12-10 19:35:59 +0100
commit55de41cf4acb5fcc3a981f8b3c2777323a8f5359 (patch)
tree035fee5b1bed7ab1488bfd6e7e9ec8362073d8b8 /Bugzilla/Bug.pm
parent38f2c4266697633a1d24bbbcac279c6332ac17b3 (diff)
downloadbugzilla-55de41cf4acb5fcc3a981f8b3c2777323a8f5359.tar.gz
bugzilla-55de41cf4acb5fcc3a981f8b3c2777323a8f5359.tar.xz
Bug 399075: Remove the 'commentonclearresolution' parameter - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 25c2146ef..e9e73920a 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -2049,11 +2049,6 @@ sub clear_resolution {
if (!$self->status->is_open) {
ThrowUserError('resolution_cant_clear', { bug_id => $self->id });
}
- if (Bugzilla->params->{'commentonclearresolution'}
- && $self->resolution && !$self->{added_comments})
- {
- ThrowUserError('comment_required');
- }
$self->{'resolution'} = '';
$self->_clear_dup_id;
}