From: Toshi MARUYAMA Date: Mon, 27 Jun 2011 23:15:43 +0000 (+0000) Subject: Escape AuthSources in the list. X-Git-Tag: 1.3.0~1772 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=102a87dd522ead0104cd3ebc8c9abcbeb93b72d5;p=redmine.git Escape AuthSources in the list. Contributed by MAEDA, Go git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6127 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb index 6e8b4d7db..56906bd43 100644 --- a/app/views/auth_sources/index.html.erb +++ b/app/views/auth_sources/index.html.erb @@ -15,10 +15,10 @@ <% for source in @auth_sources %> "> - <%= link_to source.name, :action => 'edit', :id => source%> - <%= source.auth_method_name %> - <%= source.host %> - <%= source.users.count %> + <%= link_to(h(source.name), :action => 'edit', :id => source)%> + <%= h source.auth_method_name %> + <%= h source.host %> + <%= h source.users.count %> <%= link_to l(:button_test), :action => 'test_connection', :id => source %> <%= link_to l(:button_delete), { :action => 'destroy', :id => source },