diff options
author | Mike Virata-Stone <mjstone@on-site.com> | 2016-08-11 21:57:12 -0700 |
---|---|---|
committer | Mike Virata-Stone <mjstone@on-site.com> | 2016-08-12 00:02:13 -0700 |
commit | 20afe71f5f63ad07b99e7257539fffd0da817e83 (patch) | |
tree | 84aaacf6ff61b9ed66ca5b181d1444a7b58d2764 /actionview/lib | |
parent | 5821baebe5cedf710ffa5bd99ff80b2150227676 (diff) | |
download | rails-20afe71f5f63ad07b99e7257539fffd0da817e83.tar.gz rails-20afe71f5f63ad07b99e7257539fffd0da817e83.tar.bz2 rails-20afe71f5f63ad07b99e7257539fffd0da817e83.zip |
Ensure values are strings before calling gsub
Diffstat (limited to 'actionview/lib')
-rw-r--r-- | actionview/lib/action_view/helpers/tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/helpers/tag_helper.rb b/actionview/lib/action_view/helpers/tag_helper.rb index 7af26edf95..4950f272a4 100644 --- a/actionview/lib/action_view/helpers/tag_helper.rb +++ b/actionview/lib/action_view/helpers/tag_helper.rb @@ -88,7 +88,7 @@ module ActionView if value.is_a?(Array) value = escape ? safe_join(value, " ") : value.join(" ") else - value = escape ? ERB::Util.unwrapped_html_escape(value) : value + value = escape ? ERB::Util.unwrapped_html_escape(value) : value.to_s end %(#{key}="#{value.gsub(/"/, '"'.freeze)}") end |