diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-11 12:15:56 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-11 12:15:56 +0000 |
commit | 60e6a623bd955606b330354a49be5145080c95c6 (patch) | |
tree | a59f14d1a3831b1e926d6708bd7731d7c891800b /app/views | |
parent | a8e392c0e5732e934b6e45a68a69e9e0170432c9 (diff) | |
download | redmine-60e6a623bd955606b330354a49be5145080c95c6.tar.gz redmine-60e6a623bd955606b330354a49be5145080c95c6.zip |
Adds an icon to the "Test" link.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9235 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/auth_sources/index.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/auth_sources/index.html.erb b/app/views/auth_sources/index.html.erb index 30d3bad7f..3ce5c090c 100644 --- a/app/views/auth_sources/index.html.erb +++ b/app/views/auth_sources/index.html.erb @@ -20,7 +20,7 @@ <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_test), {:action => 'test_connection', :id => source}, :class => 'icon icon-test' %> <%= link_to l(:button_delete), { :action => 'destroy', :id => source }, :method => :delete, :confirm => l(:text_are_you_sure), |