From 476aa64420a21efc15d50857c2ebbad3fb5de6db Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Wed, 3 Nov 2010 16:33:30 +0100 Subject: Bug 607909: Hours worked / work_time is marked as changing when commenting even when you don't enter a value r/a=LpSolit --- Bugzilla/Bug.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Bug.pm') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index e005b05c5..f5b092800 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -895,8 +895,8 @@ sub update { # timestamp. $comment->{bug_when} = $delta_ts; $comment = Bugzilla::Comment->insert_create_data($comment); - if ($comment->{work_time}) { - LogActivityEntry($self->id, "work_time", "", $comment->{work_time}, + if ($comment->work_time) { + LogActivityEntry($self->id, "work_time", "", $comment->work_time, Bugzilla->user->id, $delta_ts); } } -- cgit v1.2.3-24-g4f1b