paginate blog comments; fix length/site on AR objects

This commit is contained in:
jomo
2014-09-22 06:29:24 +02:00
parent 15ca378878
commit e767ec729c
5 changed files with 7 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ class UsersController < ApplicationController
@users = User.where.not(id: User.first.id) #Remove first user
end
@users = @users.order("role_id desc", "confirmed desc", :name)
@count = @users.length
@count = @users.size
@users = @users.page(params[:page]).per(100)
end