Bugzilla – Attachment 9558 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.44 KB, created by
Kyle M Hall
on 2012-05-14 12:23:08 UTC
(
hide
)
Description:
Bug 8080 - login and password is pre-filled by the browser when creating a new patron
Filename:
MIME Type:
Creator:
Kyle M Hall
Created:
2012-05-14 12:23:08 UTC
Size:
2.44 KB
patch
obsolete
>From db2376e62dfbe5000775519ce2465cd7ef1f5959 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 > >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. >--- > .../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 bc1f07c..ac2e328 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