From: Jean-Philippe Lang Date: Sun, 31 Jan 2016 11:20:56 +0000 (+0000) Subject: Adds units in history for estimated time (#12456). X-Git-Tag: 3.3.0~256 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cc2401a2b92f3d71fd07f2519624495f8cc42ddd;p=redmine.git Adds units in history for estimated time (#12456). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@15143 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index 3adc45454..4a368006e 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -382,8 +382,8 @@ module IssuesHelper old_value = find_name_by_reflection(field, detail.old_value) when 'estimated_hours' - value = "%0.02f" % detail.value.to_f unless detail.value.blank? - old_value = "%0.02f" % detail.old_value.to_f unless detail.old_value.blank? + value = l_hours_short(detail.value.to_f) unless detail.value.blank? + old_value = l_hours_short(detail.old_value.to_f) unless detail.old_value.blank? when 'parent_id' label = l(:field_parent_issue)