1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed that form elements would strip the trailing [] from the first parameter (closes #3545) [ruby@bobsilva.com]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3661 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2006-02-26 01:07:05 +00:00
parent 06dd7b8efa
commit 231a464d4e
3 changed files with 10 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed that form elements would strip the trailing [] from the first parameter #3545 [ruby@bobsilva.com]
* During controller resolution, update the NameError suppression to check for the expected constant. [Nicholas Seckar]
* Update script.aculo.us to V1.5.3 [Thomas Fuchs]

View file

@ -231,7 +231,7 @@ module ActionView
DEFAULT_DATE_OPTIONS = { :discard_type => true }.freeze unless const_defined?(:DEFAULT_DATE_OPTIONS)
def initialize(object_name, method_name, template_object, local_binding = nil, object = nil)
@object_name, @method_name = object_name.to_s, method_name.to_s
@object_name, @method_name = object_name.to_s.dup, method_name.to_s.dup
@template_object, @local_binding = template_object, local_binding
@object = object
if @object_name.sub!(/\[\]$/,"")

View file

@ -68,6 +68,13 @@ class FormHelperTest < Test::Unit::TestCase
assert_dom_equal expected, text_field("post", "title", :maxlength => 35)
end
def test_text_field_doesnt_change_param_values
object_name = 'post[]'
expected = '<input id="post_123_title" name="post[123][title]" size="30" type="text" value="Hello World" />'
assert_equal expected, text_field(object_name, "title")
assert_equal object_name, "post[]"
end
def test_check_box
assert_dom_equal(
'<input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="1" /><input name="post[secret]" type="hidden" value="0" />',