diff options
author | Andrew White <andrew.white@unboxed.co> | 2018-02-27 11:07:04 +0000 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2018-02-27 15:03:50 +0000 |
commit | 96eeea538c9c5b7b60d6f8baed2e86a9e2a920c9 (patch) | |
tree | 0dd707fe4f9e13b99ef967e479146ed6273832af /guides | |
parent | f86b221a53e8363b7c8a5688df603fc388b62b7c (diff) | |
download | rails-96eeea538c9c5b7b60d6f8baed2e86a9e2a920c9.tar.gz rails-96eeea538c9c5b7b60d6f8baed2e86a9e2a920c9.tar.bz2 rails-96eeea538c9c5b7b60d6f8baed2e86a9e2a920c9.zip |
Don't enforce UTF-8 by default
With the disabling of TLS 1.0 by most major websites, continuing to run
IE8 or lower becomes increasingly difficult so default to not enforcing
UTF-8 encoding as it's not relevant to other browsers.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index fd747c1686..a87b8a2f48 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -588,6 +588,8 @@ Defaults to `'signed cookie'`. * `config.action_view.form_with_generates_ids` determines whether `form_with` generates ids on inputs. This defaults to `true`. +* `config.action_view.default_enforce_utf8` determines whether forms are generated with a hidden tag that forces older versions of Internet Explorer to submit forms encoded in UTF-8. This defaults to `false`. + ### Configuring Action Mailer There are a number of settings available on `config.action_mailer`: |