From: Jean-Philippe Lang Date: Sat, 12 Apr 2008 17:25:06 +0000 (+0000) Subject: Fixed: Double dot displayed on ticket view when ticket not updated (closes #813). X-Git-Tag: 0.8.0-RC1~589 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8eb86396e195e040658b4f3b685072e9bd5cc572;p=redmine.git Fixed: Double dot displayed on ticket view when ticket not updated (closes #813). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1344 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 77d9ce640..f788d0ec8 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -13,7 +13,7 @@

<%=h @issue.subject %>

<%= authoring @issue.created_on, @issue.author %>. - <%= l(:label_updated_time, distance_of_time_in_words(Time.now, @issue.updated_on)) if @issue.created_on != @issue.updated_on %>. + <%= l(:label_updated_time, distance_of_time_in_words(Time.now, @issue.updated_on)) + '.' if @issue.created_on != @issue.updated_on %>