diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-08 05:36:34 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-01-08 05:36:34 +0000 |
commit | 251e3cc7fa4966a919c1a845d5942f5649509ffc (patch) | |
tree | 991f9a484441cc32484d727f4ce385ce3738ba2e /app/views/custom_fields | |
parent | 585d93e499dca04c19af47ecc9a4738fb86d5840 (diff) | |
download | redmine-251e3cc7fa4966a919c1a845d5942f5649509ffc.tar.gz redmine-251e3cc7fa4966a919c1a845d5942f5649509ffc.zip |
remove unneeded Relation#all from app/views/custom_fields/_form.html.erb
git-svn-id: http://svn.redmine.org/redmine/trunk@12517 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields')
-rw-r--r-- | app/views/custom_fields/_form.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/_form.html.erb b/app/views/custom_fields/_form.html.erb index a6417bb53..0ef7843c6 100644 --- a/app/views/custom_fields/_form.html.erb +++ b/app/views/custom_fields/_form.html.erb @@ -88,7 +88,7 @@ when "IssueCustomField" %> <% if @custom_field.is_a?(IssueCustomField) %> <fieldset class="box" id="custom_field_tracker_ids"><legend><%=l(:label_tracker_plural)%></legend> - <% Tracker.sorted.all.each do |tracker| %> + <% Tracker.sorted.each do |tracker| %> <%= check_box_tag "custom_field[tracker_ids][]", tracker.id, (@custom_field.trackers.include? tracker), |