1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-23 17:01:13 +00:00

Code cleanup (#19458).

git-svn-id: http://svn.redmine.org/redmine/trunk@14265 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2015-05-10 10:30:10 +00:00
parent 51f7060aa8
commit c8fb0956d1
2 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -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 %>