Bugzilla – Attachment 9584 Details for
Bug 8080
login and password no longer pre-filled by the browser when creating a new patron
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 8080 - login and password is pre-filled by the browser when creating a new patron
Bug-8080---login-and-password-is-pre-filled-by-the.patch (text/plain), 2.59 KB, created by
Liz Rea
on 2012-05-15 13:36:05 UTC
(
hide
)
Description:
Bug 8080 - login and password is pre-filled by the browser when creating a new patron
Filename:
MIME Type:
Creator:
Liz Rea
Created:
2012-05-15 13:36:05 UTC
Size:
2.59 KB
patch
obsolete
>From b32b7022d8cbcf58d1cabe231e775f028a89b94b Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 14 May 2012 08:22:14 -0400 >Subject: [PATCH] Bug 8080 - login and password is pre-filled by the browser when creating a new patron >Content-Type: text/plain; charset="utf-8" > >When creating a new patron, if you have chosen to let your browser remember your >login and password for you, the login and password fields will be pre-filled with >them, leading to a systematic error "the passwords entered do not match" since >the second password field was not filled. These fields should be blank. > >Add the directive autocomplete="off" to the memberentry form tags. > >Signed-off-by: Liz Rea <wizzyrea@gmail.com> >passes t xt >enhances usability of password forms, gets my signoff. >--- > .../prog/en/modules/members/memberentrygen.tt | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >index 0cb2877..2cb0426 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt >@@ -145,7 +145,7 @@ > <p><a class="popup" href="javascript:Dopop('moremember.pl?print=brief&borrowernumber=[% check_member %]');" >View existing record</a></p> > <form action="/cgi-bin/koha/members/memberentry.pl" method="get"><input type="hidden" name="op" value="modify" /><input type="hidden" name="borrowernumber" value="[% check_member %]" /><input type="hidden" name="category_type" value="[% check_categorytype %]" /><input class="edit" type="submit" value="It is a duplicate. Edit existing record" /></form> > >- <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post"> >+ <form name="form_double" action="/cgi-bin/koha/members/memberentry.pl" method="post" autocomplete="off"> > <input type="hidden" name="nodouble" value="1" /> > <input class="new" type="submit" value="Not a duplicate. Save as new record" /> > </div> >@@ -197,7 +197,7 @@ > [% END %] > > >-[% UNLESS ( check_member ) %]<form name="form" id="entryform" action="/cgi-bin/koha/members/memberentry.pl" method="post"> >+[% UNLESS ( check_member ) %]<form name="form" id="entryform" action="/cgi-bin/koha/members/memberentry.pl" method="post" autocomplete="off"> > <input type="hidden" name="nodouble" value="[% nodouble %]" /> [% END %] > <!-- field always hidden in different form (1,2,3) --> > <input type="hidden" name="BorrowerMandatoryField" value="[% BorrowerMandatoryField %]" /> >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8080
:
9558
| 9584