mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
corrected right-arrow html entity encoding
when using a javascript-disabled browser
This commit is contained in:
parent
1dd882ea99
commit
55c7ced2f3
1 changed files with 2 additions and 2 deletions
|
@ -15,9 +15,9 @@
|
|||
|
||||
<% if @topic_view.next_page %>
|
||||
<p>
|
||||
<b><%= link_to("next page →", @topic_view.next_page_path ) %></b>
|
||||
<b><%= link_to("next page →".html_safe, @topic_view.next_page_path ) %></b>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
|
||||
<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>
|
||||
<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>
|
||||
|
|
Loading…
Reference in a new issue