summaryrefslogtreecommitdiffstats
path: root/app/controllers/roles_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-26 21:18:44 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2006-12-26 21:18:44 +0000
commitb3a3d3e2fab59c542c40135b242364780e9a9768 (patch)
tree6ade309d078cf20302dee63ff8a8585113303a8f /app/controllers/roles_controller.rb
parent0820e745d65b7a2f197df1a6128fe7cc196fc940 (diff)
downloadredmine-b3a3d3e2fab59c542c40135b242364780e9a9768.tar.gz
redmine-b3a3d3e2fab59c542c40135b242364780e9a9768.zip
replaced deprecated find_all calls
git-svn-id: http://redmine.rubyforge.org/svn/trunk@126 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/roles_controller.rb')
-rw-r--r--app/controllers/roles_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index e16127b61..2307c5730 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -77,8 +77,8 @@ class RolesController < ApplicationController
flash[:notice] = l(:notice_successful_update)
end
end
- @roles = Role.find_all
- @trackers = Tracker.find_all
+ @roles = Role.find :all
+ @trackers = Tracker.find :all
@statuses = IssueStatus.find(:all, :include => :workflows)
end
end