diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 12:58:24 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-02 12:58:24 +0000 |
commit | 7ddb0e584f0faaa88e29934f88eab119e9325ae5 (patch) | |
tree | 76b32a965c5073a61ab438781884e4d3834d3494 /app/views/auth_sources | |
parent | 7d2098bc22c7a9ecd12fe517d90f7c7f9c4a21cc (diff) | |
download | redmine-7ddb0e584f0faaa88e29934f88eab119e9325ae5.tar.gz redmine-7ddb0e584f0faaa88e29934f88eab119e9325ae5.zip |
HTML escape at app/views/auth_sources/edit.rhtml.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6363 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r-- | app/views/auth_sources/edit.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth_sources/edit.rhtml b/app/views/auth_sources/edit.rhtml index 165fd4f3e..e2c99aa3c 100644 --- a/app/views/auth_sources/edit.rhtml +++ b/app/views/auth_sources/edit.rhtml @@ -1,4 +1,4 @@ -<h2><%=l(:label_auth_source)%> (<%= @auth_source.auth_method_name %>)</h2> +<h2><%=l(:label_auth_source)%> (<%= h(@auth_source.auth_method_name) %>)</h2> <% form_tag({:action => 'update', :id => @auth_source}, :class => "tabular") do %> <%= render :partial => 'form' %> |