aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-05 16:43:04 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-05 16:43:04 -0300
commit096ee1594d329f53ef47d0aff9bb6eef25a18b96 (patch)
treefee9aa81d253d1a362e942cdab7d67b763e848bb /actionpack
parent3d961abf53acdf43c4aaf67c721ad834fc7093e9 (diff)
downloadrails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.tar.gz
rails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.tar.bz2
rails-096ee1594d329f53ef47d0aff9bb6eef25a18b96.zip
Improve the changelog entry [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md7
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*