##// END OF EJS Templates
HTML escape at app/views/wiki/show.rhtml....
Toshi MARUYAMA -
r6273:0c2958dbdac8
parent child
Show More
@@ -21,7 +21,7
21 <%= link_to((l(:label_next) + ' &#187;'), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
21 <%= link_to((l(:label_next) + ' &#187;'), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %>
22 <%= link_to(l(:label_current_version), :action => 'show', :id => @page.title, :project_id => @page.project) %>
22 <%= link_to(l(:label_current_version), :action => 'show', :id => @page.title, :project_id => @page.project) %>
23 <br />
23 <br />
24 <em><%= @content.author ? @content.author.name : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
24 <em><%= @content.author ? link_to_user(@content.author) : "anonyme" %>, <%= format_time(@content.updated_on) %> </em><br />
25 <%=h @content.comments %>
25 <%=h @content.comments %>
26 </p>
26 </p>
27 <hr />
27 <hr />
@@ -58,4 +58,4
58 <%= render :partial => 'sidebar' %>
58 <%= render :partial => 'sidebar' %>
59 <% end %>
59 <% end %>
60
60
61 <% html_title @page.pretty_title %>
61 <% html_title h(@page.pretty_title) %>
General Comments 0
You need to be logged in to leave comments. Login now