aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/form_tag_helper.rb
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-10-12 01:05:29 +0000
committerJamis Buck <jamis@37signals.com>2005-10-12 01:05:29 +0000
commit8946804b8a73242ac59296782741fec2fb08e97a (patch)
tree1504c2fceaa6abd9b5ab04b03686e83ac0180bd5 /actionpack/lib/action_view/helpers/form_tag_helper.rb
parent6fe5f65d87d9fc49be3f937641da1fb225838dc7 (diff)
downloadrails-8946804b8a73242ac59296782741fec2fb08e97a.tar.gz
rails-8946804b8a73242ac59296782741fec2fb08e97a.tar.bz2
rails-8946804b8a73242ac59296782741fec2fb08e97a.zip
Make xyz_tag(..., :id => "foo") work again
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2535 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/form_tag_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/form_tag_helper.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/actionpack/lib/action_view/helpers/form_tag_helper.rb b/actionpack/lib/action_view/helpers/form_tag_helper.rb
index 07cc62a527..5933be2575 100644
--- a/actionpack/lib/action_view/helpers/form_tag_helper.rb
+++ b/actionpack/lib/action_view/helpers/form_tag_helper.rb
@@ -47,7 +47,7 @@ module ActionView
# Options:
# * <tt>:multiple</tt> - If set to true the selection will allow multiple choices.
def select_tag(name, option_tags = nil, options = {})
- content_tag("select", option_tags, { "name" => name, "id" => name }.update(options))
+ content_tag("select", option_tags, { "name" => name, "id" => name }.update(options.stringify_keys))
end
# Creates a standard text field.
@@ -59,7 +59,7 @@ module ActionView
#
# A hash of standard HTML options for the tag.
def text_field_tag(name, value = nil, options = {})
- tag("input", { "type" => "text", "name" => name, "id" => name, "value" => value }.update(options))
+ tag("input", { "type" => "text", "name" => name, "id" => name, "value" => value }.update(options.stringify_keys))
end
# Creates a hidden field.
@@ -103,33 +103,33 @@ module ActionView
options.delete("size")
end
- content_tag("textarea", content, { "name" => name, "id" => name }.update(options))
+ content_tag("textarea", content, { "name" => name, "id" => name }.update(options.stringify_keys))
end
# Creates a check box.
def check_box_tag(name, value = "1", checked = false, options = {})
- html_options = { "type" => "checkbox", "name" => name, "id" => name, "value" => value }.update(options)
+ html_options = { "type" => "checkbox", "name" => name, "id" => name, "value" => value }.update(options.stringify_keys)
html_options["checked"] = "checked" if checked
tag("input", html_options)
end
# Creates a radio button.
def radio_button_tag(name, value, checked = false, options = {})
- html_options = { "type" => "radio", "name" => name, "id" => name, "value" => value }.update(options)
+ html_options = { "type" => "radio", "name" => name, "id" => name, "value" => value }.update(options.stringify_keys)
html_options["checked"] = "checked" if checked
tag("input", html_options)
end
# Creates a submit button with the text <tt>value</tt> as the caption.
def submit_tag(value = "Save changes", options = {})
- tag("input", { "type" => "submit", "name" => "commit", "value" => value }.update(options))
+ tag("input", { "type" => "submit", "name" => "commit", "value" => value }.update(options.stringify_keys))
end
# Displays an image which when clicked will submit the form.
#
# <tt>source</tt> is passed to AssetTagHelper#image_path
def image_submit_tag(source, options = {})
- tag("input", { "type" => "image", "src" => image_path(source) }.update(options))
+ tag("input", { "type" => "image", "src" => image_path(source) }.update(options.stringify_keys))
end
end
end