diff options
Diffstat (limited to 'app/views/versions/show.rhtml')
-rw-r--r-- | app/views/versions/show.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/versions/show.rhtml b/app/views/versions/show.rhtml index 7e5264562..ef5375198 100644 --- a/app/views/versions/show.rhtml +++ b/app/views/versions/show.rhtml @@ -10,12 +10,12 @@ <table> <tr> <td width="130px" align="right"><%= l(:field_estimated_hours) %></td> - <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(lwr(:label_f_hour, @version.estimated_hours)) %></td> + <td width="240px" class="total-hours"width="130px" align="right"><%= html_hours(l_hours(@version.estimated_hours)) %></td> </tr> <% if User.current.allowed_to?(:view_time_entries, @project) %> <tr> <td width="130px" align="right"><%= l(:label_spent_time) %></td> - <td width="240px" class="total-hours"><%= html_hours(lwr(:label_f_hour, @version.spent_hours)) %></td> + <td width="240px" class="total-hours"><%= html_hours(l_hours(@version.spent_hours)) %></td> </tr> <% end %> </table> |