1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-22 00:11:14 +00:00

Missing select name.

git-svn-id: http://svn.redmine.org/redmine/trunk@15931 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2016-10-29 10:16:58 +00:00
parent 8b86d5158e
commit ac7e5f4db2

View File

@ -59,7 +59,7 @@ module MyHelper
Redmine::MyPage.block_options.each do |label, block| Redmine::MyPage.block_options.each do |label, block|
options << content_tag('option', label, :value => block, :disabled => disabled.include?(block)) options << content_tag('option', label, :value => block, :disabled => disabled.include?(block))
end end
content_tag('select', options, :id => "block-select") select_tag('block', options, :id => "block-select")
end end
def calendar_items(startdt, enddt) def calendar_items(startdt, enddt)