aboutsummaryrefslogtreecommitdiff
blob: 02e48cb9be97f4f8f2ce45ab552c4f6ce7c8a79b (plain)
1
2
3
4
5
6
7
8
9
require 'hobo_fields/email_address'

class HoboFields::EmailAddress
  def to_html_with_escape(xmldoctype = true)
    ERB::Util.h to_html_without_escape xmldoctype
  end

  alias_method_chain :to_html, :escape
end