aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string
diff options
context:
space:
mode:
authorVasiliy Ermolovich <younash@gmail.com>2012-05-18 18:17:43 +0300
committerVasiliy Ermolovich <younash@gmail.com>2012-05-18 18:30:48 +0300
commit3b1c30c99ff1f3f5e970e3fa696d3291d5897bd7 (patch)
treed05293c529c0091f92ec9582bd840c2c54e1e764 /activesupport/lib/active_support/core_ext/string
parent62c6ac2f8d423c62bffc18e06d90bb3b87a7c79a (diff)
downloadrails-3b1c30c99ff1f3f5e970e3fa696d3291d5897bd7.tar.gz
rails-3b1c30c99ff1f3f5e970e3fa696d3291d5897bd7.tar.bz2
rails-3b1c30c99ff1f3f5e970e3fa696d3291d5897bd7.zip
doesn't modify params in SafeBuffer#%
Diffstat (limited to 'activesupport/lib/active_support/core_ext/string')
-rw-r--r--activesupport/lib/active_support/core_ext/string/output_safety.rb4
1 files changed, 1 insertions, 3 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 f98d5b3777..5226ff0cbe 100644
--- a/activesupport/lib/active_support/core_ext/string/output_safety.rb
+++ b/activesupport/lib/active_support/core_ext/string/output_safety.rb
@@ -151,9 +151,7 @@ module ActiveSupport #:nodoc:
end
def %(args)
- args = Array(args)
-
- args.map! do |arg|
+ args = Array(args).map do |arg|
if !html_safe? || arg.html_safe?
arg
else