hidden_field can also be in fields_for

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3006 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson
2005-11-13 12:54:00 +00:00
parent c6435b77de
commit b0c23e589f

View File

@@ -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.