From 55c7ced2f36fcf9890d9c8dd684d00a145457ce9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9gis=20Hanol?= <regis@hanol.fr>
Date: Wed, 20 Feb 2013 17:00:28 +0100
Subject: [PATCH] corrected right-arrow html entity encoding

when using a javascript-disabled browser
---
 app/views/topics/show.html.erb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb
index 01db00495a0..c61b8062143 100644
--- a/app/views/topics/show.html.erb
+++ b/app/views/topics/show.html.erb
@@ -15,9 +15,9 @@
 
 <% if @topic_view.next_page %>
   <p>
-    <b><%= link_to("next page &rarr;", @topic_view.next_page_path ) %></b>
+    <b><%= link_to("next page &rarr;".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>
\ No newline at end of file
+<p>Powered by <a href="http://www.discourse.org">Discourse</a>, best viewed with JavaScript enabled</p>