diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-18 02:46:05 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-09-18 02:46:05 +0000 |
commit | 78f9eef8be7ea45af32d4bf7f893d84a8916ff06 (patch) | |
tree | b1cc0e029ec7887546847a2b88b5ed8ba016f67d /app/views/trackers | |
parent | 8257e6b62b98db9245313bad02db1c9f3a6680bf (diff) | |
download | redmine-78f9eef8be7ea45af32d4bf7f893d84a8916ff06.tar.gz redmine-78f9eef8be7ea45af32d4bf7f893d84a8916ff06.zip |
replace tabs to spaces at app/views/trackers/_form.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7396 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/trackers')
-rw-r--r-- | app/views/trackers/_form.html.erb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/trackers/_form.html.erb b/app/views/trackers/_form.html.erb index 2cbed576c..114a524b8 100644 --- a/app/views/trackers/_form.html.erb +++ b/app/views/trackers/_form.html.erb @@ -8,13 +8,13 @@ <% if IssueCustomField.all.any? %> <p> - <label><%= l(:label_custom_field_plural) %></label> - <% IssueCustomField.all.each do |field| %> - <label class="block"> - <%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.include?(field) %> - <%=h field.name %> - </label> - <% end %> + <label><%= l(:label_custom_field_plural) %></label> + <% IssueCustomField.all.each do |field| %> + <label class="block"> + <%= check_box_tag 'tracker[custom_field_ids][]',field.id, @tracker.custom_fields.include?(field) %> + <%=h field.name %> + </label> + <% end %> </p> <%= hidden_field_tag 'tracker[custom_field_ids][]', '' %> <% end %> |