summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-04-12 17:25:06 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-04-12 17:25:06 +0000
commit8eb86396e195e040658b4f3b685072e9bd5cc572 (patch)
treece4ce1b7616190750a91fe5ff479d20e63354d50 /app/views
parent7aaa538fd9cb34b88c037a7d03a5351c1e2c852e (diff)
downloadredmine-8eb86396e195e040658b4f3b685072e9bd5cc572.tar.gz
redmine-8eb86396e195e040658b4f3b685072e9bd5cc572.zip
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
Diffstat (limited to 'app/views')
-rw-r--r--app/views/issues/show.rhtml2
1 files changed, 1 insertions, 1 deletions
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 @@
<h3><%=h @issue.subject %></h3>
<p class="author">
<%= 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 %>
</p>
<table width="100%">