##// END OF EJS Templates
Fixed: Double dot displayed on ticket view when ticket not updated (closes #813)....
Jean-Philippe Lang -
r1329:8eb86396e195
parent child
Show More
@@ -13,7 +13,7
13 <h3><%=h @issue.subject %></h3>
13 <h3><%=h @issue.subject %></h3>
14 <p class="author">
14 <p class="author">
15 <%= authoring @issue.created_on, @issue.author %>.
15 <%= authoring @issue.created_on, @issue.author %>.
16 <%= l(:label_updated_time, distance_of_time_in_words(Time.now, @issue.updated_on)) if @issue.created_on != @issue.updated_on %>.
16 <%= l(:label_updated_time, distance_of_time_in_words(Time.now, @issue.updated_on)) + '.' if @issue.created_on != @issue.updated_on %>
17 </p>
17 </p>
18
18
19 <table width="100%">
19 <table width="100%">
General Comments 0
You need to be logged in to leave comments. Login now