##// END OF EJS Templates
remove unneeded escaping at app/views/journals/diff.html.erb...
Toshi MARUYAMA -
r11664:9d62a564df81
parent child
Show More
@@ -1,13 +1,13
1 <h2><%=h @issue.tracker %> #<%= @issue.id %></h2>
1 <h2><%= @issue.tracker %> #<%= @issue.id %></h2>
2 <p><%= authoring @journal.created_on, @journal.user, :label => :label_updated_time_by %></p>
2 <p><%= authoring @journal.created_on, @journal.user, :label => :label_updated_time_by %></p>
3
3
4 <div class="text-diff">
4 <div class="text-diff">
5 <%= simple_format_without_paragraph @diff.to_html %>
5 <%= simple_format_without_paragraph @diff.to_html %>
6 </div>
6 </div>
7
7
8 <p>
8 <p>
9 <%= link_to(l(:button_back), issue_path(@issue),
9 <%= link_to(l(:button_back), issue_path(@issue),
10 :onclick => 'if (history.length > 1) {history.back(); return false;}') %>
10 :onclick => 'if (history.length > 1) {history.back(); return false;}') %>
11 </p>
11 </p>
12
12
13 <% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
13 <% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
General Comments 0
You need to be logged in to leave comments. Login now