mirror of
https://github.com/redmine/redmine.git
synced 2026-02-01 20:30:11 +01:00
Code cleanup (#19458).
git-svn-id: http://svn.redmine.org/redmine/trunk@14265 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -323,13 +323,12 @@ class User < Principal
|
||||
return auth_source.allow_password_changes?
|
||||
end
|
||||
|
||||
# Returns true if the user password has expired
|
||||
def password_expired?
|
||||
changed_on = self.passwd_changed_on || Time.at(0)
|
||||
period = Setting.password_max_age.to_i
|
||||
|
||||
if period.zero?
|
||||
if Setting.password_max_age.to_i.zero?
|
||||
false
|
||||
else
|
||||
changed_on = self.passwd_changed_on || Time.at(0)
|
||||
changed_on < period.days.ago
|
||||
end
|
||||
end
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<%= submit_tag l(:button_apply) %>
|
||||
<% end %>
|
||||
|
||||
<% unless @user.must_change_passwd? || @user.password_expired? %>
|
||||
<% unless @user.must_change_password? %>
|
||||
<% content_for :sidebar do %>
|
||||
<%= render :partial => 'sidebar' %>
|
||||
<% end %>
|
||||
|
||||
Reference in New Issue
Block a user