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:54:01 -0300 |
commit | c9bd2022d42890f97f6f9f5896594f030c491add (patch) | |
tree | 43b1cec57fc84bcdc2ba348db7913b5d8f94d19c /actionpack | |
parent | dbe25910faabedfeae3e1f284cbfb6af746201c6 (diff) | |
download | rails-c9bd2022d42890f97f6f9f5896594f030c491add.tar.gz rails-c9bd2022d42890f97f6f9f5896594f030c491add.tar.bz2 rails-c9bd2022d42890f97f6f9f5896594f030c491add.zip |
Improve the changelog entry [ci skip]
Diffstat (limited to 'actionpack')
-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 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* |