Added pagination to topic#show

This commit is contained in:
2013-01-22 10:26:05 -05:00
parent 38483a9ba7
commit 1d439f2c45
4 changed files with 16 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ class TopicsController < ApplicationController
def show
@topic.hit! if @topic
@posts = @topic.posts.page(params[:page]).per(10)
#Kaminari.paginate_array(@topic).page(params[:page]).per(10)
@my_blockquote = {
'Quote' => [
/\[quote(:.*)?=(.*?)\](.*?)\[\/quote\1?\]/mi,