diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-08-05 17:58:33 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-08-05 17:58:33 +0000 |
commit | b764e398475c26217bcca8ac9063f053bc1cf627 (patch) | |
tree | f8c44b9b990ff60f3cf51fe65bb8dad9dae8bd35 /app/views/my | |
parent | bd4fba08e5bec539a746e9be422b9c2baab51406 (diff) | |
download | redmine-b764e398475c26217bcca8ac9063f053bc1cf627.tar.gz redmine-b764e398475c26217bcca8ac9063f053bc1cf627.zip |
Option to force a user to change his password (#3872).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12081 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/my')
-rw-r--r-- | app/views/my/password.html.erb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/my/password.html.erb b/app/views/my/password.html.erb index de9a459e4..5dbf24cb0 100644 --- a/app/views/my/password.html.erb +++ b/app/views/my/password.html.erb @@ -17,6 +17,10 @@ <%= submit_tag l(:button_apply) %> <% end %> +<% unless @user.must_change_passwd? %> <% content_for :sidebar do %> <%= render :partial => 'sidebar' %> <% end %> +<% end %> + +<%= javascript_tag "$('#password').focus();" %> |