Skip to content

Commit

Permalink
eliminate more wasteful allocations
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jun 6, 2014
1 parent a8a6f85 commit 17fc6f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionview/lib/action_view/helpers/url_helper.rb
Expand Up @@ -462,7 +462,7 @@ def link_to_if(condition, name, options = {}, html_options = {}, &block)
# <strong>Email me:</strong> <span>me@domain.com</span>
# </a>
def mail_to(email_address, name = nil, html_options = {}, &block)
email_address = ERB::Util.html_escape(email_address)
email_address = ERB::Util.unwrapped_html_escape(email_address)

html_options, name = name, nil if block_given?
html_options = (html_options || {}).stringify_keys
Expand All @@ -471,7 +471,7 @@ def mail_to(email_address, name = nil, html_options = {}, &block)
option = html_options.delete(item) || next
"#{item}=#{Rack::Utils.escape_path(option)}"
}.compact
extras = extras.empty? ? '' : '?' + ERB::Util.html_escape(extras.join('&'))
extras = extras.empty? ? '' : '?' + ERB::Util.unwrapped_html_escape(extras.join('&'))

html_options["href"] = "mailto:#{email_address}#{extras}".html_safe

Expand Down

0 comments on commit 17fc6f1

Please sign in to comment.