aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/CHANGELOG.md
diff options
context:
space:
mode:
authorGeorgi Georgiev <gtqnchev@gmail.com>2017-12-02 20:45:10 +0200
committerGeorgi Georgiev <gtqnchev@gmail.com>2018-07-16 09:44:22 +0300
commit113d8a2ba39da13840845bac3aa4f274a1dae19b (patch)
tree02889c40f541e06bb2e2b48786c40109e8ede698 /actionview/CHANGELOG.md
parentcd84d8716497010464cc2fb14f6ac9fe12b7efb7 (diff)
downloadrails-113d8a2ba39da13840845bac3aa4f274a1dae19b.tar.gz
rails-113d8a2ba39da13840845bac3aa4f274a1dae19b.tar.bz2
rails-113d8a2ba39da13840845bac3aa4f274a1dae19b.zip
Fix issue with `button_to`'s `to_form_params`
`button_to` was throwing exception when invoked with `params` hash that contains symbol and string keys. The reason for the exception was that `to_form_params` was comparing the given symbol and string keys. The issue is fixed by turning all keys to strings inside `to_form_params` before comparing them.
Diffstat (limited to 'actionview/CHANGELOG.md')
-rw-r--r--actionview/CHANGELOG.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md
index 7d3ca7735e..6d45cc1d8a 100644
--- a/actionview/CHANGELOG.md
+++ b/actionview/CHANGELOG.md
@@ -1,3 +1,14 @@
+* Fix issue with `button_to`'s `to_form_params`
+
+ `button_to` was throwing exception when invoked with `params` hash that
+ contains symbol and string keys. The reason for the exception was that
+ `to_form_params` was comparing the given symbol and string keys.
+
+ The issue is fixed by turning all keys to strings inside
+ `to_form_params` before comparing them.
+
+ *Georgi Georgiev*
+
* Mark arrays of translations as trusted safe by using the `_html` suffix.
Example: