diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2011-06-11 18:24:05 +0200 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2011-06-11 18:24:05 +0200 |
commit | e591d14b9c4a1220dc55c93c01a81ad6219c1f2f (patch) | |
tree | 4175762064bca211cc326ea5f286ccde0998d946 | |
parent | 82568bedaeb780cec2a6e14aa740ceb4da7291dd (diff) | |
download | rails-e591d14b9c4a1220dc55c93c01a81ad6219c1f2f.tar.gz rails-e591d14b9c4a1220dc55c93c01a81ad6219c1f2f.tar.bz2 rails-e591d14b9c4a1220dc55c93c01a81ad6219c1f2f.zip |
Update changelog with #1552 feature: add hidden field before select[multiple=true]
-rw-r--r-- | actionpack/CHANGELOG | 5 |
1 files changed, 5 insertions, 0 deletions
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: |