aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/record_tag_helper.rb
diff options
context:
space:
mode:
authorSemyon Perepelitsa <sema@sema.in>2013-01-24 04:26:49 +0800
committerSemyon Perepelitsa <sema@sema.in>2013-01-31 01:28:57 +0800
commit540ebe37cd1a9551b739c552a0d4efd2adc7ff22 (patch)
tree083ed8c399ec6791f907698fa0aa5c3398505834 /actionpack/lib/action_view/helpers/record_tag_helper.rb
parentaa202965603fb8511bdd2448677d19dfb7afa87f (diff)
downloadrails-540ebe37cd1a9551b739c552a0d4efd2adc7ff22.tar.gz
rails-540ebe37cd1a9551b739c552a0d4efd2adc7ff22.tar.bz2
rails-540ebe37cd1a9551b739c552a0d4efd2adc7ff22.zip
Fix `content_tag_for` with array html option.
It would embed array as string instead of joining it like `content_tag` does: content_tag(:td, class: ["foo", "bar"]){} #=> '<td class="foo bar"></td>' Before: content_tag_for(:td, item, class: ["foo", "bar"]){} #=> '<td class="item [&quot;foo&quot;, &quot;bar&quot;]" id="item_1"></td>' After: content_tag_for(:td, item, class: ["foo", "bar"]){} #=> '<td class="item foo bar" id="item_1"></td>'
Diffstat (limited to 'actionpack/lib/action_view/helpers/record_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/record_tag_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/record_tag_helper.rb b/actionpack/lib/action_view/helpers/record_tag_helper.rb
index 271a194913..f767957fa9 100644
--- a/actionpack/lib/action_view/helpers/record_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/record_tag_helper.rb
@@ -92,7 +92,7 @@ module ActionView
# for each record.
def content_tag_for_single_record(tag_name, record, prefix, options, &block)
options = options ? options.dup : {}
- options[:class] = "#{dom_class(record, prefix)} #{options[:class]}".rstrip
+ options[:class] = [ dom_class(record, prefix), options[:class] ].compact
options[:id] = dom_id(record, prefix)
if block_given?