Skip to content

Instantly share code, notes, and snippets.

@kaichen
Created September 23, 2009 03:22
Show Gist options
  • Save kaichen/191663 to your computer and use it in GitHub Desktop.
Save kaichen/191663 to your computer and use it in GitHub Desktop.
Patch Merb text_area Helper for escaping content
# Patch Merb text_area Helper for escaping content
require 'merb-helpers'
module Merb::Helpers::Form::Builder
class Base
def unbound_text_area(contents, attrs)
update_unbound_controls(attrs, "text_area")
tag(:textarea, Merb::Parse.escape_xml(contents.to_s), attrs)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment