Patch #32548
Updated by Bernhard Rohloff about 5 years ago
This would be very helpful to add new features from plugins related to custom fields. Thanks a lot to take in accout this very small patch <pre><code class="ruby"> <pre> <% unless @issue_custom_fields.empty? %> <fieldset class="box tabular" id="project_issue_custom_fields"><legend><%= toggle_checkboxes_link('#project_issue_custom_fields input[type=checkbox]:enabled') %><%=l(:label_custom_field_plural)%></legend> <% @issue_custom_fields.each do |custom_field| %> <label class="floating"> <%= check_box_tag 'project[issue_custom_field_ids][]', custom_field.id, (@project.all_issue_custom_fields.include? custom_field), :disabled => (custom_field.is_for_all? ? "disabled" : nil), :id => nil %> <%= custom_field_name_tag(custom_field) %> </label> <% end %> <%= hidden_field_tag 'project[issue_custom_field_ids][]', '' %> </fieldset> <% # The new hook -%> <%= call_hook(:view_project_settings_issues_custom_fields, { :issue_custom_fields => @issue_custom_fields, :project => @project }) %> <% end %> </code></pre> </pre>