mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Include missing module in tag_helper
Since 6857415187
we are using #safe_join to
join the content when an Array is given, so we must include the dependent
module here to make sure it's available when this module is used alone.
This was making Simple Form tests to fail with current master due to the
missing dependency.
This commit is contained in:
parent
4c34ad37b2
commit
05fde24e1e
1 changed files with 1 additions and 0 deletions
|
@ -9,6 +9,7 @@ module ActionView
|
|||
module TagHelper
|
||||
extend ActiveSupport::Concern
|
||||
include CaptureHelper
|
||||
include OutputSafetyHelper
|
||||
|
||||
BOOLEAN_ATTRIBUTES = %w(disabled readonly multiple checked autobuffer
|
||||
autoplay controls loop selected hidden scoped async
|
||||
|
|
Loading…
Reference in a new issue