diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb index 09b8906fe..e7e847ab0 100644 --- a/app/views/topics/show.html.erb +++ b/app/views/topics/show.html.erb @@ -1,5 +1,5 @@

- <%= @topic_view.topic.title %> + <%= link_to(@topic_view.topic.title, @topic_view.topic.relative_url) %>

<% (@post ? [@post] : @topic_view.posts).each do |post| %>
@@ -12,7 +12,7 @@ <% if @next_page%>

- next page + <%= link_to("next page", @topic_view.topic.relative_url + "?page=" + @next_page ) %>

<% end %>