Redirect to last page when posting a reply

This commit is contained in:
2013-01-25 02:46:07 -05:00
parent 54986abac8
commit 1e05402d18

View File

@@ -18,7 +18,7 @@ class PostsController < ApplicationController
@post.user ||= current_user @post.user ||= current_user
if @post.save if @post.save
flash[:notice] = "Post was successfully created." flash[:notice] = "Post was successfully created."
redirect_to topic_path(@post.topic) redirect_to topic_path(@post.topic, :page => @post.topic.posts.page.per(10).num_pages)
else else
render :action => 'new' render :action => 'new'
end end