From: Toshi MARUYAMA Date: Fri, 10 Jan 2014 12:49:04 +0000 (+0000) Subject: remove unneeded Relation#all from app/views/settings/_repositories.html.erb X-Git-Tag: 2.5.0~286 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1c71eccff23063405ef3335836908b7de513fabc;p=redmine.git remove unneeded Relation#all from app/views/settings/_repositories.html.erb git-svn-id: http://svn.redmine.org/redmine/trunk@12613 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/settings/_repositories.html.erb b/app/views/settings/_repositories.html.erb index 96f380e37..f54c219ac 100644 --- a/app/views/settings/_repositories.html.erb +++ b/app/views/settings/_repositories.html.erb @@ -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']) ) %> @@ -107,7 +107,7 @@ <%= 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']) ) %>