diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:24:10 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:24:10 +0000 |
commit | c1c2fb8e476f889d8f1773748046badd85ff05f5 (patch) | |
tree | 94c9bfea6efa25936098c2cf91d566fd643cc014 /app | |
parent | 437c062a4beed980be67de119323cfb4db9b640e (diff) | |
download | redmine-c1c2fb8e476f889d8f1773748046badd85ff05f5.tar.gz redmine-c1c2fb8e476f889d8f1773748046badd85ff05f5.zip |
HTML escape at app/views/wiki/history.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6398 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/wiki/history.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/wiki/history.rhtml b/app/views/wiki/history.rhtml index 4481e8634..e6a262b85 100644 --- a/app/views/wiki/history.rhtml +++ b/app/views/wiki/history.rhtml @@ -1,6 +1,6 @@ <%= wiki_page_breadcrumb(@page) %> -<h2><%=h @page.pretty_title %></h2> +<h2><%=h h(@page.pretty_title) %></h2> <h3><%= l(:label_history) %></h3> |