From e591d14b9c4a1220dc55c93c01a81ad6219c1f2f Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Sat, 11 Jun 2011 18:24:05 +0200 Subject: [PATCH] Update changelog with #1552 feature: add hidden field before select[multiple=true] --- actionpack/CHANGELOG | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 1965906df9..f4b6464bdc 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,10 @@ *Rails 3.2.0 (unreleased)* +* Generate hidden input before select with :multiple option set to true. + This is useful when you rely on the fact that when no options is set, + the state of select will be sent to rails application. Without hidden field + nothing is sent according to HTML spec [Bogdan Gusiev] + * Refactor ActionController::TestCase cookies [Andrew White] Assigning cookies for test cases should now use cookies[], e.g: