aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-06-07 14:41:17 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-06-07 14:41:17 +0200
commit206c04f716cbc608e0913f31e19b79458014e519 (patch)
tree2fa284e584cb81924edaa534b527a5faa89b1dbc /lib
parent228044c5c21d128f366dbca2a527586b7a5e33f4 (diff)
downloadrails-206c04f716cbc608e0913f31e19b79458014e519.tar.gz
rails-206c04f716cbc608e0913f31e19b79458014e519.tar.bz2
rails-206c04f716cbc608e0913f31e19b79458014e519.zip
Move the escaping choice to the layout
Diffstat (limited to 'lib')
-rw-r--r--lib/action_text/content.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/action_text/content.rb b/lib/action_text/content.rb
index 2eff8bb361..9dae07cf0c 100644
--- a/lib/action_text/content.rb
+++ b/lib/action_text/content.rb
@@ -54,7 +54,7 @@ module ActionText
end
def to_html_with_layout
- ActionText.renderer.render(partial: "action_text/content/layout", locals: { document: to_html.html_safe }).html_safe
+ ActionText.renderer.render(partial: "action_text/content/layout", locals: { document: to_html }).html_safe
end
def to_s