Fix the bulk edit style from Redmine Core changes.

This commit is contained in:
Eric Davis
2010-07-01 13:37:37 -07:00
parent aa9649fde3
commit d3e7f2d2ae

View File

@@ -42,7 +42,7 @@ class BudgetIssueHook < Redmine::Hook::ViewListener
content_tag('option', l(:label_none), :value => 'none') +
options_from_collection_for_select(Deliverable.find_all_by_project_id(context[:project].id, :order => 'subject ASC'), :id, :subject))
return content_tag(:p, "<label>#{l(:field_deliverable)}: " + select + "</label>")
return content_tag(:p, content_tag(:label, l(:field_deliverable)) + select)
else
return ''
end