[open-ils-commits] [GIT] Evergreen ILS branch rel_2_3 updated. 8ed9d9b1f491580278e148f214599fdad02142b1

Evergreen Git git at git.evergreen-ils.org
Wed Dec 19 16:26:15 EST 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_2_3 has been updated
       via  8ed9d9b1f491580278e148f214599fdad02142b1 (commit)
      from  b246fe01853dee7d4803e2e1dece799f096d46f3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 8ed9d9b1f491580278e148f214599fdad02142b1
Author: Simon Hieu Mai <hieu.mai at mnsu.edu>
Date:   Wed Dec 19 14:33:54 2012 -0600

    LP#1088561: remove current password (renew password issue with TPAC)
    
    If a user chooses to have their browser remember their password for the
    catalog, it can fill in the password to the change password form page
    as hidden dots. This behavior was observed specifically with Firefox.
    
    Instead, add autocomplete="off" attribute to the form to force users to
    enter existing password to change to a new password as intended.
    
    Signed-off-by: Simon Mai <hieu.mai at mnsu.edu>
    Signed-off-by: Ben Shum <bshum at biblio.org>

diff --git a/Open-ILS/src/templates/opac/myopac/update_password.tt2 b/Open-ILS/src/templates/opac/myopac/update_password.tt2
index c87fc5d..0d3d461 100644
--- a/Open-ILS/src/templates/opac/myopac/update_password.tt2
+++ b/Open-ILS/src/templates/opac/myopac/update_password.tt2
@@ -21,7 +21,7 @@
     </div>
 [% END %]
 
-<form method='POST' id='account-update-email'> 
+<form method='POST' id='account-update-email' autocomplete="off">
     <table> 
         <tr><td>[% l('Current Password') %]</td><td><input type='password' name='current_pw'/></td></tr>
         <tr><td>[% l('New Password') %]</td><td><input type='password' name='new_pw'/></td></tr>

-----------------------------------------------------------------------

Summary of changes:
 .../src/templates/opac/myopac/update_password.tt2  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list