summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorKent Rogers <kar@cray.com>2010-05-13 08:29:58 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-05-13 08:29:58 +0200
commit34e9970696a7dd34bc21cea973d2ad3696440792 (patch)
tree93dac67b52960399e537ad5819923cb908b4a142 /Bugzilla/Bug.pm
parent20ed8a92744b90c7b6b5eab19d0ed7e846100a5e (diff)
downloadbugzilla-34e9970696a7dd34bc21cea973d2ad3696440792.tar.gz
bugzilla-34e9970696a7dd34bc21cea973d2ad3696440792.tar.xz
Bug 271913: Do not force the user to comment when adding Hours Worked
r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index b9c64da7f..1b7753eff 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -2243,11 +2243,7 @@ sub add_comment {
$comment = $self->_check_comment($comment);
$params ||= {};
- if (exists $params->{work_time}) {
- $params->{work_time} = $self->_check_work_time($params->{work_time});
- ThrowUserError('comment_required')
- if $comment eq '' && $params->{work_time} != 0;
- }
+ $params->{work_time} = $self->_check_work_time($params->{work_time});
if (exists $params->{type}) {
$params->{type} = $self->_check_comment_type($params->{type});
}
@@ -2257,7 +2253,7 @@ sub add_comment {
}
# XXX We really should check extra_data, too.
- if ($comment eq '' && !($params->{type} || $params->{work_time})) {
+ if ($comment eq '' && !($params->{type} || abs($params->{work_time}))) {
return;
}