From 42d3ec3a599144eaebca01386b9d960452f8087a Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Mon, 17 Dec 2012 18:24:06 +0000 Subject: Display 25 items. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11028 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/auth_sources_controller.rb | 2 +- app/controllers/trackers_controller.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/auth_sources_controller.rb b/app/controllers/auth_sources_controller.rb index ede9e0733..8e2e1f001 100644 --- a/app/controllers/auth_sources_controller.rb +++ b/app/controllers/auth_sources_controller.rb @@ -23,7 +23,7 @@ class AuthSourcesController < ApplicationController before_filter :find_auth_source, :only => [:edit, :update, :test_connection, :destroy] def index - @auth_source_pages, @auth_sources = paginate AuthSource, :per_page => 10 + @auth_source_pages, @auth_sources = paginate AuthSource, :per_page => 25 end def new diff --git a/app/controllers/trackers_controller.rb b/app/controllers/trackers_controller.rb index 2811929fa..28c761681 100644 --- a/app/controllers/trackers_controller.rb +++ b/app/controllers/trackers_controller.rb @@ -25,7 +25,7 @@ class TrackersController < ApplicationController def index respond_to do |format| format.html { - @tracker_pages, @trackers = paginate Tracker.sorted, :per_page => 10 + @tracker_pages, @trackers = paginate Tracker.sorted, :per_page => 25 render :action => "index", :layout => false if request.xhr? } format.api { -- cgit v1.2.3