summaryrefslogtreecommitdiffstats
path: root/app/controllers/roles_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-31 21:18:43 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-31 21:18:43 +0000
commitfa688d48e673abfa8711beb69995aaf3d41069d1 (patch)
treeb86c5494839673b615cb2d99aac8a861067fd10d /app/controllers/roles_controller.rb
parent671a0fa10161ead2ec0fef888710cf7d872b2f61 (diff)
downloadredmine-fa688d48e673abfa8711beb69995aaf3d41069d1.tar.gz
redmine-fa688d48e673abfa8711beb69995aaf3d41069d1.zip
added the ability to set the sort order for trackers
git-svn-id: http://redmine.rubyforge.org/svn/trunk@209 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/roles_controller.rb')
-rw-r--r--app/controllers/roles_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index 6ac08a767..b26cf730b 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -96,7 +96,7 @@ class RolesController < ApplicationController
end
end
@roles = Role.find(:all, :order => 'position')
- @trackers = Tracker.find :all
+ @trackers = Tracker.find(:all, :order => 'position')
@statuses = IssueStatus.find(:all, :include => :workflows, :order => 'position')
end
end