From 98306bed054c320833d9d48229c68da10a38f3d0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 30 Apr 2005 08:46:22 +0000 Subject: Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1253 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/form_helper.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack/lib/action_view') diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 4e25eee071..78f3f68830 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -175,6 +175,10 @@ module ActionView options["type"] = "radio" options["value"] = tag_value options["checked"] = "checked" if value == tag_value + pretty_tag_value = tag_value.gsub(/\s/, "_").gsub(/\W/, "").downcase + options["id"] = @auto_index ? + "#{@object_name}_#{@auto_index}_#{@method_name}_#{pretty_tag_value}" : + "#{@object_name}_#{@method_name}_#{pretty_tag_value}" add_default_name_and_id(options) tag("input", options) end -- cgit v1.2.3