aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2013-11-27 02:46:51 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2013-12-04 09:27:55 -0800
commitc229c7a39c2704e0b5c19c2b4d5edb16ecdcef7f (patch)
tree867c7184cea72574d32caf046b413e501acb1715 /activesupport
parent2f1c5789c1882413df0346fec1f29eed24f37698 (diff)
downloadrails-c229c7a39c2704e0b5c19c2b4d5edb16ecdcef7f.tar.gz
rails-c229c7a39c2704e0b5c19c2b4d5edb16ecdcef7f.tar.bz2
rails-c229c7a39c2704e0b5c19c2b4d5edb16ecdcef7f.zip
Use lower case letters in unicodes sequences to match the new encoder's output
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/string/output_safety.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/output_safety.rb b/activesupport/lib/active_support/core_ext/string/output_safety.rb
index d54265f1b1..0e07e5952f 100644
--- a/activesupport/lib/active_support/core_ext/string/output_safety.rb
+++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb
@@ -4,7 +4,7 @@ require 'active_support/core_ext/kernel/singleton_class'
class ERB
module Util
HTML_ESCAPE = { '&' => '&amp;', '>' => '&gt;', '<' => '&lt;', '"' => '&quot;', "'" => '&#39;' }
- JSON_ESCAPE = { '&' => '\u0026', '>' => '\u003E', '<' => '\u003C' }
+ JSON_ESCAPE = { '&' => '\u0026', '>' => '\u003e', '<' => '\u003c' }
HTML_ESCAPE_ONCE_REGEXP = /["><']|&(?!([a-zA-Z]+|(#\d+));)/
JSON_ESCAPE_REGEXP = /[&><]/