aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/json/encoders')
-rw-r--r--activesupport/lib/active_support/json/encoders/string.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/json/encoders/string.rb b/activesupport/lib/active_support/json/encoders/string.rb
index 707298d987..f357262fc6 100644
--- a/activesupport/lib/active_support/json/encoders/string.rb
+++ b/activesupport/lib/active_support/json/encoders/string.rb
@@ -8,7 +8,9 @@ module ActiveSupport
"\r" => '\r',
"\t" => '\t',
'"' => '\"',
- '\\' => '\\\\'
+ '\\' => '\\\\',
+ ">" => '\076',
+ '<' => '\074'
}
end
end
@@ -16,7 +18,7 @@ end
class String
def to_json #:nodoc:
- '"' + gsub(/[\010\f\n\r\t"\\]/) { |s|
+ '"' + gsub(/[\010\f\n\r\t"\\><]/) { |s|
ActiveSupport::JSON::Encoding::ESCAPED_CHARS[s]
}.gsub(/([\xC0-\xDF][\x80-\xBF]|
[\xE0-\xEF][\x80-\xBF]{2}|