From b0c23e589f29319c4ff81a4d07257928d34f9510 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 13 Nov 2005 12:54:00 +0000 Subject: hidden_field can also be in fields_for git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3006 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/form_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_view/helpers/form_helper.rb b/actionpack/lib/action_view/helpers/form_helper.rb index 3a86edb348..b96d7a8f02 100644 --- a/actionpack/lib/action_view/helpers/form_helper.rb +++ b/actionpack/lib/action_view/helpers/form_helper.rb @@ -155,7 +155,7 @@ module ActionView # Works just like text_field, but returns an input tag of the "hidden" type instead. def hidden_field(object_name, method, options = {}) - InstanceTag.new(object_name, method, self).to_input_field_tag("hidden", options) + InstanceTag.new(object_name, method, self, nil, options.delete(:object)).to_input_field_tag("hidden", options) end # Works just like text_field, but returns an input tag of the "file" type instead, which won't have a default value. -- cgit v1.2.3