diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:01:40 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:01:40 +0000 |
commit | a2f2592fe10dc47fa64cbf8e3e471beba7928e7c (patch) | |
tree | a2d9d813a554a8e06969f8c3a2808117f3b6af5f /app/views/documents | |
parent | 1e0f51463794ecee6e7f79ce3130ec234f59d354 (diff) | |
download | redmine-a2f2592fe10dc47fa64cbf8e3e471beba7928e7c.tar.gz redmine-a2f2592fe10dc47fa64cbf8e3e471beba7928e7c.zip |
HTML escape at app/views/documents/show.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6367 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/documents')
-rw-r--r-- | app/views/documents/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/documents/show.rhtml b/app/views/documents/show.rhtml index 63e321013..29845bfa3 100644 --- a/app/views/documents/show.rhtml +++ b/app/views/documents/show.rhtml @@ -25,7 +25,7 @@ <% end %> <% end %> -<% html_title @document.title -%> +<% html_title h(@document.title) -%> <% content_for :header_tags do %> <%= stylesheet_link_tag 'scm' %> |