diff options
Diffstat (limited to 'app/views/projects')
-rw-r--r-- | app/views/projects/_form.rhtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/projects/_form.rhtml b/app/views/projects/_form.rhtml index e29777af4..e63c929cc 100644 --- a/app/views/projects/_form.rhtml +++ b/app/views/projects/_form.rhtml @@ -35,10 +35,11 @@ <fieldset class="box"><legend><%=l(:label_custom_field_plural)%></legend> <% for custom_field in @custom_fields %> <label class="floating"> - <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %> + <%= check_box_tag 'project[custom_field_ids][]', custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %> <%= custom_field.name %> </label> <% end %> +<%= hidden_field_tag 'project[custom_field_ids][]', '' %> </fieldset> <% end %> <!--[eoform:project]--> |