Ruby/Ruby On Rails/Tips のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Ruby/Ruby On Rails/Tips へ行く。
- 1 (2007-08-27 (月) 13:55:22)
- 2 (2007-08-27 (月) 14:36:33)
- 3 (2007-08-28 (火) 14:14:00)
Ruby On Rails - Tips
DEPRECATION WARNING: end_form_tag
It means you should replace this:
1. <%= start_form_tag ... %> 2. ... 3. <%= end_form_tag %>
With this:
1. <% form_tag ... do %> 2. ... 3. <% end %>