summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-06-27 23:21:45 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-06-27 23:21:45 +0000
commitffc111bd2335f7c98907faaa73ba646a820dac29 (patch)
treeb89bde4f4a62846ca3ca16562417c5840272419a
parent2a2e705e9e7275f5f37926828dd5708b46987c97 (diff)
downloadredmine-ffc111bd2335f7c98907faaa73ba646a820dac29.tar.gz
redmine-ffc111bd2335f7c98907faaa73ba646a820dac29.zip
Merged r6127 from trunk.
Escape AuthSources in the list. Contributed by MAEDA, Go git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.1-stable@6129 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/auth_sources/index.html.erb8
1 files changed, 4 insertions, 4 deletions
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 @@
<tbody>
<% for source in @auth_sources %>
<tr class="<%= cycle("odd", "even") %>">
- <td><%= link_to source.name, :action => 'edit', :id => source%></td>
- <td align="center"><%= source.auth_method_name %></td>
- <td align="center"><%= source.host %></td>
- <td align="center"><%= source.users.count %></td>
+ <td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td>
+ <td align="center"><%= h source.auth_method_name %></td>
+ <td align="center"><%= h source.host %></td>
+ <td align="center"><%= h source.users.count %></td>
<td class="buttons">
<%= link_to l(:button_test), :action => 'test_connection', :id => source %>
<%= link_to l(:button_delete), { :action => 'destroy', :id => source },