]> source.dussan.org Git - redmine.git/commitdiff
remove unneeded Relation#all from app/views/settings/_repositories.html.erb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 Jan 2014 12:49:04 +0000 (12:49 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 Jan 2014 12:49:04 +0000 (12:49 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12613 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/settings/_repositories.html.erb

index 96f380e37dee38d37fbbd500e677173e5d52e298..f54c219acd25134de7985feeb6ced2b270927172 100644 (file)
@@ -95,7 +95,7 @@
                 "settings[commit_update_keywords][if_tracker_id][]",
                 options_for_select(
                   [[l(:label_all), ""]] +
-                    Tracker.sorted.all.map {|t| [t.name, t.id.to_s]},
+                    Tracker.sorted.map {|t| [t.name, t.id.to_s]},
                 rule['if_tracker_id'])
                ) %>
       </td>
         <%= select_tag("settings[commit_update_keywords][status_id][]",
                        options_for_select(
                          [["", 0]] +
-                         IssueStatus.sorted.all.
+                         IssueStatus.sorted.
                            collect{|status| [status.name, status.id.to_s]},
                          rule['status_id'])
                    ) %>