aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
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 5c9bcc7545..9d50342867 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,9 +1,10 @@
## 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*