diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-23 10:11:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-23 10:11:08 +0000 |
commit | b778c51e9049ca2c0d745a699db6d93d53b71175 (patch) | |
tree | 8608956d05f884b557ea3451bead74a4dc9441f0 /app/views/auth_sources | |
parent | ec201b08b3cfd1e115704abdbd7bc541a3651fe1 (diff) | |
download | redmine-b778c51e9049ca2c0d745a699db6d93d53b71175.tar.gz redmine-b778c51e9049ca2c0d745a699db6d93d53b71175.zip |
Removed unneeded #h calls in views.
git-svn-id: http://svn.redmine.org/redmine/trunk@14043 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/auth_sources')
-rw-r--r-- | app/views/auth_sources/index.html.erb | 8 |
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 ad84572d4..fcdbf7d43 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 id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>"> - <td class="name"><%= link_to(h(source.name), :action => 'edit', :id => source)%></td> - <td><%= h source.auth_method_name %></td> - <td><%= h source.host %></td> - <td><%= h source.users.count %></td> + <td class="name"><%= link_to(source.name, :action => 'edit', :id => source)%></td> + <td><%= source.auth_method_name %></td> + <td><%= source.host %></td> + <td><%= source.users.count %></td> <td class="buttons"> <%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %> <%= delete_link auth_source_path(source) %> |