diff options
Diffstat (limited to 'app/controllers/sys_controller.rb')
-rw-r--r-- | app/controllers/sys_controller.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/controllers/sys_controller.rb b/app/controllers/sys_controller.rb index b822c5c1e..295f6c030 100644 --- a/app/controllers/sys_controller.rb +++ b/app/controllers/sys_controller.rb @@ -19,11 +19,7 @@ class SysController < ActionController::Base before_filter :check_enabled def projects - p = Project.active.has_module(:repository).find( - :all, - :include => :repository, - :order => "#{Project.table_name}.identifier" - ) + p = Project.active.has_module(:repository).order("#{Project.table_name}.identifier").preload(:repository).all # extra_info attribute from repository breaks activeresource client render :xml => p.to_xml( :only => [:id, :identifier, :name, :is_public, :status], |