aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/new_base
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-07-31 22:25:54 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-08-02 17:09:37 -0300
commit2bdb4ec6ad9bb99ac0029fcb030ac757307d08ae (patch)
tree70e5d9cf8bf64b73d60b4798828f8aa59a488236 /actionpack/test/controller/new_base
parent96e92b616264c26a5c1c2a50f0495c119a869772 (diff)
downloadrails-2bdb4ec6ad9bb99ac0029fcb030ac757307d08ae.tar.gz
rails-2bdb4ec6ad9bb99ac0029fcb030ac757307d08ae.tar.bz2
rails-2bdb4ec6ad9bb99ac0029fcb030ac757307d08ae.zip
html_escape should escape single quotes
https://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content Closes #7215 Conflicts: actionpack/test/template/erb_util_test.rb actionpack/test/template/form_tag_helper_test.rb actionpack/test/template/text_helper_test.rb actionpack/test/template/url_helper_test.rb activesupport/lib/active_support/core_ext/string/output_safety.rb
Diffstat (limited to 'actionpack/test/controller/new_base')
-rw-r--r--actionpack/test/controller/new_base/render_template_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/new_base/render_template_test.rb b/actionpack/test/controller/new_base/render_template_test.rb
index ade204c387..29c8885d9f 100644
--- a/actionpack/test/controller/new_base/render_template_test.rb
+++ b/actionpack/test/controller/new_base/render_template_test.rb
@@ -126,7 +126,7 @@ module RenderTemplate
test "rendering a template with error properly excerts the code" do
get :with_error
assert_status 500
- assert_match "undefined local variable or method `idontexist'", response.body
+ assert_match "undefined local variable or method `idontexist", response.body
end
end