diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-21 22:13:19 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-21 22:13:19 +0000 |
commit | 81575e7291adee92ecaa0757c1859d66506c66bf (patch) | |
tree | 89ff4560a1f41cabaccd89048c99f9d25a4015dc /app/views | |
parent | 72bebd1d45664f66405aa0717a3da09878628dae (diff) | |
download | redmine-81575e7291adee92ecaa0757c1859d66506c66bf.tar.gz redmine-81575e7291adee92ecaa0757c1859d66506c66bf.zip |
Skip validation of required custom fields when creating a project if user does not have permissions to see those custom fields (#36593).
Patch by mathieu-mbru.
git-svn-id: https://svn.redmine.org/redmine/trunk@21488 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/boards/new.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/boards/new.html.erb b/app/views/boards/new.html.erb index acdf43fcf..bf11bd146 100644 --- a/app/views/boards/new.html.erb +++ b/app/views/boards/new.html.erb @@ -1,6 +1,6 @@ -<h2><%= l(:label_board_new) %></h2> +<%# <h2><%= l(:label_board_new) %></h2> <%= labelled_form_for @board, :url => project_boards_path(@project) do |f| %> <%= render :partial => 'form', :locals => {:f => f} %> <%= submit_tag l(:button_create) %> -<% end %> +<% end %> %> |