From 8ee2ae1846bf7191e9ce56c6cb70429ac2341be7 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sun, 29 Jul 2012 10:06:41 +0000 Subject: [PATCH] html5 compliance. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10109 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_history.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/issues/_history.html.erb b/app/views/issues/_history.html.erb index aea0d1e1f..470a55acf 100644 --- a/app/views/issues/_history.html.erb +++ b/app/views/issues/_history.html.erb @@ -1,9 +1,9 @@ <% reply_links = authorize_for('issues', 'edit') -%> <% for journal in journals %>
+

<%= link_to "##{journal.indice}", {:anchor => "note-#{journal.indice}"}, :class => "journal-link" %> <%= avatar(journal.user, :size => "24") %> - <%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= authoring journal.created_on, journal.user, :label => :label_updated_time_by %>

<% if journal.details.any? %> @@ -14,6 +14,7 @@ <% end %> <%= render_notes(issue, journal, :reply_links => reply_links) unless journal.notes.blank? %> +
<%= call_hook(:view_issues_history_journal_bottom, { :journal => journal }) %> <% end %>