From 5b31d4cf847f8bf371013a2f95b3bdb4519505ee Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Wed, 18 Mar 2009 16:31:25 +0100 Subject: [PATCH] change name of menu item for managing users --- app/views/layouts/standard.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/standard.html.erb b/app/views/layouts/standard.html.erb index 494e3963..53b58045 100644 --- a/app/views/layouts/standard.html.erb +++ b/app/views/layouts/standard.html.erb @@ -91,7 +91,7 @@ jQuery(document).ready(function() {
  • <%= navigation_link( "Preferences", preferences_path, {:accesskey => "u", :title => "Show my preferences"} ) %>
  • <%= navigation_link( "Export", {:controller => "data", :action => "index"}, {:accesskey => "i", :title => "Import and export data"} ) %>
  • <% if current_user.is_admin? -%> -
  • <%= navigation_link("Admin", users_path, {:accesskey => "a", :title => "Add or delete users"} ) %>
  • +
  • <%= navigation_link("Manage users", users_path, {:accesskey => "a", :title => "Add or delete users"} ) %>
  • <% end -%>
  • ?