summaryrefslogtreecommitdiffstats
path: root/app/views/custom_fields/new.html.erb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-09 18:15:55 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-09 18:15:55 +0000
commit9636882c1e890c7d6dda6b974b9765bebe3f880a (patch)
tree626d15eb8cb6f7cb17fc514abb5ad97293d95efe /app/views/custom_fields/new.html.erb
parent312ffe43c7efa910d3aa987826e4b8b5f358139e (diff)
downloadredmine-9636882c1e890c7d6dda6b974b9765bebe3f880a.tar.gz
redmine-9636882c1e890c7d6dda6b974b9765bebe3f880a.zip
Use #labelled_form_for instead of #labelled_tabular_form_for.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8141 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/custom_fields/new.html.erb')
-rw-r--r--app/views/custom_fields/new.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/custom_fields/new.html.erb b/app/views/custom_fields/new.html.erb
index 85f6ef53e..a68cef5dd 100644
--- a/app/views/custom_fields/new.html.erb
+++ b/app/views/custom_fields/new.html.erb
@@ -2,7 +2,7 @@
&#187; <%= link_to l(@custom_field.type_name), :controller => 'custom_fields', :action => 'index', :tab => @custom_field.class.name %>
&#187; <%= l(:label_custom_field_new) %></h2>
-<% labelled_tabular_form_for :custom_field, @custom_field, :url => { :action => "new" } do |f| %>
+<% labelled_form_for :custom_field, @custom_field, :url => { :action => "new" } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
<%= hidden_field_tag 'type', @custom_field.type %>
<%= submit_tag l(:button_save) %>