diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-05 16:43:04 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-05 16:43:04 -0300 |
commit | 096ee1594d329f53ef47d0aff9bb6eef25a18b96 (patch) | |
tree | fee9aa81d253d1a362e942cdab7d67b763e848bb | |
parent | 3d961abf53acdf43c4aaf67c721ad834fc7093e9 (diff) | |
download | rails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.tar.gz rails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.tar.bz2 rails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.zip |
Improve the changelog entry [ci skip]
-rw-r--r-- | actionpack/CHANGELOG.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index 3121167d2d..913edbd8df 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,9 +1,10 @@ ## Rails 4.0.0 (unreleased) ## -* Fix explicit names on multiple file fields. If a file field tag is passed +* Fix explicit names on multiple file fields. If a file field tag has the multiple option, it is turned into an array field (appending `[]`), - but if the file field is passed an explicit name as an option, leave the - name alone (do not append `[]`). Fixes #9830 + but if an explicit name is passed to `file_field` the `[]` is not + appended. + Fixes #9830. *Ryan McGeary* |