Commit 3a0affd2 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 676430: When editing a bug, a user not in the timetracking group generates…

Bug 676430: When editing a bug, a user not in the timetracking group generates "Use of uninitialized value in abs at Bugzilla/Bug.pm line 2682" in the web server error log r/a=mkanat
parent 9d752a2c
......@@ -2679,7 +2679,7 @@ sub add_comment {
# This makes it so we won't create new comments when there is nothing
# to add
if ($comment eq '' && !($params->{type} || abs($params->{work_time}))) {
if ($comment eq '' && !($params->{type} || abs($params->{work_time} || 0))) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment