[open-ils-commits] [GIT] Evergreen ILS branch rel_2_2 updated. bb9685397f0815d8d7ddb2f8a8f19280a360d741

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_2 has been updated
       via  bb9685397f0815d8d7ddb2f8a8f19280a360d741 (commit)
      from  002d505c43861b186e899ae617f9373d0b63424b (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 bb9685397f0815d8d7ddb2f8a8f19280a360d741
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