Changeset 5
- Timestamp:
- 11/24/04 01:15:16 (4 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_view/helpers/tag_helper.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4 r5 1 1 *CVS* 2 3 * Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [bitsweat] 2 4 3 5 * Upgraded to Builder 1.2.1 trunk/actionpack/lib/action_view/helpers/tag_helper.rb
r4 r5 24 24 # Starts a form tag that points the action to an url configured with <tt>url_for_options</tt> just like 25 25 # ActionController::Base#url_for. 26 def form_tag(url_for_options , options = {}, *parameters_for_url)26 def form_tag(url_for_options = {}, options = {}, *parameters_for_url) 27 27 html_options = { "method" => "POST" }.merge(options) 28 28