diff options
author | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2010-10-30 16:47:33 +0000 |
---|---|---|
committer | Jean-Baptiste Barth <jeanbaptiste.barth@gmail.com> | 2010-10-30 16:47:33 +0000 |
commit | 7c5497db65cabe87b70274bcd39597bd5f97b093 (patch) | |
tree | cf19b8a9976e6640822a1bef9d77c921c99876e6 /app/views/groups/_users.html.erb | |
parent | abb83f4c4f08fc4c1611ba5b150329e9af61ffbf (diff) | |
download | redmine-7c5497db65cabe87b70274bcd39597bd5f97b093.tar.gz redmine-7c5497db65cabe87b70274bcd39597bd5f97b093.zip |
Add a label for user and group search fields. #6521
Contributed by Felix Schäfer
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4312 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/groups/_users.html.erb')
-rw-r--r-- | app/views/groups/_users.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb index d3a789936..580851d5a 100644 --- a/app/views/groups/_users.html.erb +++ b/app/views/groups/_users.html.erb @@ -29,7 +29,7 @@ <% remote_form_for(:group, @group, :url => {:controller => 'groups', :action => 'add_users', :id => @group}, :method => :post) do |f| %> <fieldset><legend><%=l(:label_user_new)%></legend> - <p><%= text_field_tag 'user_search', nil %></p> + <p><%= label_tag "user_search", l(:label_user_search) %><%= text_field_tag 'user_search', nil %></p> <%= observe_field(:user_search, :frequency => 0.5, :update => :users, |