deprecated count call modified

git-svn-id: http://redmine.rubyforge.org/svn/trunk@186 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/351/head
Jean-Philippe Lang 18 years ago
parent 0d55613359
commit ab15456119
  1. 2
      app/controllers/projects_controller.rb

@ -41,7 +41,7 @@ class ProjectsController < ApplicationController
def list
sort_init 'name', 'asc'
sort_update
@project_count = Project.count(["is_public=?", true])
@project_count = Project.count(:all, :conditions => ["is_public=?", true])
@project_pages = Paginator.new self, @project_count,
15,
params['page']

Loading…
Cancel
Save