diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:00:54 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 13:00:54 +0000 |
commit | 1e0f51463794ecee6e7f79ce3130ec234f59d354 (patch) | |
tree | 64df078410b99933cbb3f1041f5a49205a7a274a /app/views | |
parent | f265e680c3df6b40bc056cd19d9bada7ab76fa49 (diff) | |
download | redmine-1e0f51463794ecee6e7f79ce3130ec234f59d354.tar.gz redmine-1e0f51463794ecee6e7f79ce3130ec234f59d354.zip |
HTML escape at app/views/common/error.html.erb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6366 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/common/error.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/error.html.erb b/app/views/common/error.html.erb index 0367b47be..cbded214f 100644 --- a/app/views/common/error.html.erb +++ b/app/views/common/error.html.erb @@ -3,4 +3,4 @@ <p id="errorExplanation"><%=h @message %></p> <p><a href="javascript:history.back()">Back</a></p> -<% html_title @status %> +<% html_title h(@status) %> |