diff --git a/app/helpers/topics_helper.rb b/app/helpers/topics_helper.rb index 978b118d5b1..8ad809ef62b 100644 --- a/app/helpers/topics_helper.rb +++ b/app/helpers/topics_helper.rb @@ -4,7 +4,4 @@ module TopicsHelper link_to(topic.title,topic.relative_url) end - def render_topic_next_page_link(topic, next_page) - link_to("next page", "#{topic.relative_url}?page=#{next_page}") - end end diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb index 75c7d3251e3..01db00495a0 100644 --- a/app/views/topics/show.html.erb +++ b/app/views/topics/show.html.erb @@ -1,5 +1,5 @@
- next page → + <%= link_to("next page →", @topic_view.next_page_path ) %>
<% end %>