mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-01 03:57:15 +00:00
Password and Confirmation fields are marked as required when editing a user (#35731).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@21167 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e1e4736e97
commit
39e212dd8f
@ -32,13 +32,13 @@
|
||||
<% end %>
|
||||
<div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
|
||||
<p>
|
||||
<%= f.password_field :password, :required => true, :size => 25 %>
|
||||
<%= f.password_field :password, :required => @user.new_record?, :size => 25 %>
|
||||
<em class="info"><%= l(:text_caracters_minimum, :count => Setting.password_min_length) %></em>
|
||||
<% if Setting.password_required_char_classes.any? %>
|
||||
<em class="info"><%= l(:text_characters_must_contain, :character_classes => Setting.password_required_char_classes.collect{|c| l("label_password_char_class_#{c}")}.join(", ")) %></em>
|
||||
<% end %>
|
||||
</p>
|
||||
<p><%= f.password_field :password_confirmation, :required => true, :size => 25 %></p>
|
||||
<p><%= f.password_field :password_confirmation, :required => @user.new_record?, :size => 25 %></p>
|
||||
<p><%= f.check_box :generate_password %></p>
|
||||
<p><%= f.check_box :must_change_passwd %></p>
|
||||
</div>
|
||||
|
||||
@ -280,6 +280,7 @@ class UsersControllerTest < Redmine::ControllerTest
|
||||
get :new
|
||||
assert_response :success
|
||||
assert_select 'input[name=?]', 'user[login]'
|
||||
assert_select 'label[for=?]>span.required', 'user_password', 1
|
||||
end
|
||||
|
||||
def test_create
|
||||
@ -482,6 +483,7 @@ class UsersControllerTest < Redmine::ControllerTest
|
||||
assert_response :success
|
||||
assert_select 'h2>a+img.gravatar'
|
||||
assert_select 'input[name=?][value=?]', 'user[login]', 'jsmith'
|
||||
assert_select 'label[for=?]>span.required', 'user_password', 0
|
||||
end
|
||||
|
||||
def test_edit_registered_user
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user