Changeset 5074
- Timestamp:
- 09/08/06 19:23:33 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_view/helpers/form_tag_helper.rb
r5045 r5074 28 28 when /^get$/i # must be case-insentive, but can't use downcase as might be nil 29 29 html_options["method"] = "get" 30 when /^post$/i, nil30 when /^post$/i, "", nil 31 31 html_options["method"] = "post" 32 32 else