rails/actionview/lib
Takayuki Matsubara 06388b0779 Added an enforce_utf8 hash option for form_tag method
Control to output a hidden input tag with name `utf8` without monkey
patching

Before:

    form_tag
    # => '<form>..<input name="utf8" type="hidden" value="&#x2713;" />..</form>'

After:

    form_tag
    # => '<form>..<input name="utf8" type="hidden" value="&#x2713;" />..</form>'

    form_tag({}, { :enforce_utf8 => false })
    # => '<form>....</form>'
2013-07-07 23:49:38 +09:00
..
action_view Added an enforce_utf8 hash option for form_tag method 2013-07-07 23:49:38 +09:00
action_view.rb Remove require to AP stuff that left 2013-06-20 17:23:17 +02:00