##// END OF EJS Templates
Fixes password sending when creating user....
Fixes password sending when creating user. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4500 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4116:86ba692bf531
r4386:a49c7f95e236
Show More
_groups.rhtml
9 lines | 366 B | text/html+ruby | RhtmlLexer
Eric Davis
Refactor: split UsersController#edit into #edit and #update...
r4116 <% form_for(:user, :url => { :action => 'update' }, :html => {:method => :put}) do %>
Jean-Philippe Lang
User groups branch merged....
r2755 <div class="box">
Jean-Philippe Lang
Sort groups on user groups setting (#4389)....
r3046 <% Group.all.sort.each do |group| %>
Jean-Philippe Lang
User groups branch merged....
r2755 <label><%= check_box_tag 'user[group_ids][]', group.id, @user.groups.include?(group) %> <%=h group %></label><br />
<% end %>
<%= hidden_field_tag 'user[group_ids][]', '' %>
</div>
<%= submit_tag l(:button_save) %>
<% end %>