aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
diff options
context:
space:
mode:
authorDaniel Fox, Grant Hutchins & Trace Wax <pair+dfox+grant+trace@pivotallabs.com>2012-11-02 14:47:35 -0700
committerGrant Hutchins <nertzy@gmail.com>2012-11-02 18:14:04 -0400
commit175ba04cf38134e156208c7e59808c40e8c25aa5 (patch)
tree0ff0203900608db71dfb96c58412ae7c976d18ff /actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
parent743d07ea2c3303b0f400f145f45686848e4bb762 (diff)
downloadrails-175ba04cf38134e156208c7e59808c40e8c25aa5.tar.gz
rails-175ba04cf38134e156208c7e59808c40e8c25aa5.tar.bz2
rails-175ba04cf38134e156208c7e59808c40e8c25aa5.zip
Support :multiple option on input tags with :index
When you have an explicit index set, then when you build an input tag with :multiple => true, it doesn't add [] to the end of its name, although it should.
Diffstat (limited to 'actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb')
-rw-r--r--actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb b/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
index e23f5113fb..45f0bc3d7b 100644
--- a/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
+++ b/actionpack/lib/action_view/helpers/tags/collection_check_boxes.rb
@@ -27,7 +27,7 @@ module ActionView
# Append a hidden field to make sure something will be sent back to the
# server if all check boxes are unchecked.
- hidden = @template_object.hidden_field_tag(tag_name_multiple, "", :id => nil)
+ hidden = @template_object.hidden_field_tag("#{tag_name}[]", "", :id => nil)
rendered_collection + hidden
end