diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-10 12:13:10 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-10 12:13:10 +0000 |
commit | 7a4e325b36c98abef8d8c5e0ea83fb9ecb5b6939 (patch) | |
tree | 18fd22e1fc8fb0bf28635c98b4ec8316363cdf56 /app/views/settings | |
parent | 373082fcbfb0b2bfbdf0d99312670b0a0721fa99 (diff) | |
download | redmine-7a4e325b36c98abef8d8c5e0ea83fb9ecb5b6939.tar.gz redmine-7a4e325b36c98abef8d8c5e0ea83fb9ecb5b6939.zip |
remove unneeded Relation#all from app/views/settings/_projects.html.erb
git-svn-id: http://svn.redmine.org/redmine/trunk@12610 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/_projects.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/_projects.html.erb b/app/views/settings/_projects.html.erb index 28fd9b578..fd9ea1b76 100644 --- a/app/views/settings/_projects.html.erb +++ b/app/views/settings/_projects.html.erb @@ -7,7 +7,7 @@ Redmine::AccessControl.available_project_modules.collect {|m| [l_or_humanize(m, :prefix => "project_module_"), m.to_s]}) %></p> <p><%= setting_multiselect(:default_projects_tracker_ids, - Tracker.sorted.all.collect {|t| [t.name, t.id.to_s]}) %></p> + Tracker.sorted.collect {|t| [t.name, t.id.to_s]}) %></p> <p><%= setting_check_box :sequential_project_identifiers %></p> |