diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-07-20 23:50:15 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-07-20 23:50:15 +0000 |
commit | 4fef8b601d3b4095dc353d917828d09b297a17b1 (patch) | |
tree | b66058ec62c9f49c1aacb467057edc536269b79c /app | |
parent | fa8d0c5c6fe036916eb49779e82d9d5cf05de315 (diff) | |
download | redmine-4fef8b601d3b4095dc353d917828d09b297a17b1.tar.gz redmine-4fef8b601d3b4095dc353d917828d09b297a17b1.zip |
Added icon for the LDAP authentication menu item. #5775
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3859 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/_menu.rhtml | 2 | ||||
-rw-r--r-- | app/views/settings/_authentication.rhtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/_menu.rhtml b/app/views/admin/_menu.rhtml index 9b3bc66b4..4fc08d888 100644 --- a/app/views/admin/_menu.rhtml +++ b/app/views/admin/_menu.rhtml @@ -3,7 +3,7 @@ <li><%= link_to l(:label_project_plural), {:controller => 'admin', :action => 'projects'}, :class => 'projects' %></li> <li><%= link_to l(:label_user_plural), {:controller => 'users'}, :class => 'users' %></li> <li><%= link_to l(:label_group_plural), {:controller => 'groups'}, :class => 'groups' %></li> - <li><%= link_to l(:label_ldap_authentication), :controller => 'ldap_auth_sources', :action => 'index' %></li> + <li><%= link_to l(:label_ldap_authentication), {:controller => 'ldap_auth_sources', :action => 'index'}, :class => 'server_authentication' %></li> <li><%= link_to l(:label_role_and_permissions), {:controller => 'roles'}, :class => 'roles' %></li> <li><%= link_to l(:label_tracker_plural), {:controller => 'trackers'}, :class => 'trackers' %></li> <li><%= link_to l(:label_issue_status_plural), {:controller => 'issue_statuses'}, :class => 'issue_statuses' %></li> diff --git a/app/views/settings/_authentication.rhtml b/app/views/settings/_authentication.rhtml index 7e8e693df..da29bb704 100644 --- a/app/views/settings/_authentication.rhtml +++ b/app/views/settings/_authentication.rhtml @@ -20,7 +20,7 @@ </div> <div style="float:right;"> - <%= link_to l(:label_ldap_authentication), :controller => 'ldap_auth_sources', :action => 'index' %> + <%= link_to l(:label_ldap_authentication), {:controller => 'ldap_auth_sources', :action => 'index'}, :class => 'icon icon-server-authentication' %> </div> <%= submit_tag l(:button_save) %> |