Deprecation warnings (#12774).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11139 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2013-01-08 20:18:12 +00:00
parent b29d74f9d5
commit 9394d739b1
11 changed files with 20 additions and 20 deletions

View File

@@ -42,12 +42,12 @@ class BoardsController < ApplicationController
'updated_on' => "#{Message.table_name}.updated_on"
@topic_count = @board.topics.count
@topic_pages = Paginator.new self, @topic_count, per_page_option, params['page']
@topic_pages = Paginator.new @topic_count, per_page_option, params['page']
@topics = @board.topics.
reorder("#{Message.table_name}.sticky DESC").
includes(:author, {:last_reply => :author}).
limit(@topic_pages.items_per_page).
offset(@topic_pages.current.offset).
offset(@topic_pages.offset).
order(sort_clause).
all
@message = Message.new(:board => @board)