summaryrefslogtreecommitdiff
path: root/app/views/forums/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/forums/show.html.erb')
-rw-r--r--app/views/forums/show.html.erb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/forums/show.html.erb b/app/views/forums/show.html.erb
index 9dcdad8..36741d9 100644
--- a/app/views/forums/show.html.erb
+++ b/app/views/forums/show.html.erb
@@ -2,13 +2,12 @@
<h1>
<%= title @forum %>
- <% params[:id] = params[:id].split("-")[0] %>
- <%= link_to "Search Threads", forumthreads_path(params.except("action", "controller")), class: "btn blue right" %>
+ <% params[:id] = @forum.id %>
+ <%= link_to "Search Threads", forumthreads_path(params.to_hash), class: "btn blue right" %>
</h1>
<% if @forum.can_write?(current_user) %>
<p>
<%= link_to "New thread", new_forumthread_path(forum: @forum), class: "btn blue" %>
- <% params[:id] = params[:id].split("-")[0] %>
</p>
<% end %>