diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-01-16 23:23:54 +0530 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2010-01-16 23:24:38 +0530 |
commit | 0fc6418e75626bbbd2a696bd3e354bae583d65ed (patch) | |
tree | e59a24b7c1fab4f7c7dd824e1e708de2ace7c261 /railties/guides/source | |
parent | 07e41a83616966fef848797c3474eb7704a62794 (diff) | |
download | rails-0fc6418e75626bbbd2a696bd3e354bae583d65ed.tar.gz rails-0fc6418e75626bbbd2a696bd3e354bae583d65ed.tar.bz2 rails-0fc6418e75626bbbd2a696bd3e354bae583d65ed.zip |
Mark title and headers as html_safe! for guides [#3702 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/layout.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/layout.html.erb b/railties/guides/source/layout.html.erb index eb66366d07..7dfcf4a507 100644 --- a/railties/guides/source/layout.html.erb +++ b/railties/guides/source/layout.html.erb @@ -87,7 +87,7 @@ <div id="container"> <div class="wrapper"> <div id="mainCol"> - <%= yield %> + <%= yield.html_safe! %> </div> </div> </div> |