Ruby/Ruby On Rails/Tips のバックアップソース(No.2)

* Ruby On Rails - Tips [#rd4f9cfe]

** DEPRECATION WARNING: end_form_tag [#k2cc9e63]
It means you should replace this:
 1. <%= start_form_tag ... %>
 2. ...
 3. <%= end_form_tag %> 

With this:
 1. <% form_tag ... do %>
 2. ...
 3. <% end %>