Bug 5009 : Turning off autocomplete
Files affected koha-tmpl/intranet-tmpl/prog/en/includes/cat-search.inc koha-tmpl/intranet-tmpl/prog/en/includes/circ-search.inc koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
dd208da05a
commit
a869a4d43b
5 changed files with 8 additions and 8 deletions
|
@ -48,7 +48,7 @@ YAHOO.util.Event.onContentReady("header_search", function() {
|
|||
[% IF ( CAN_user_circulate ) %]
|
||||
<div id="circ_search" class="residentsearch" style="display:none;">
|
||||
<p class="tip">Enter patron card number or partial name:</p>
|
||||
<form action="/cgi-bin/koha/circ/circulation.pl" method="post">
|
||||
<form action="/cgi-bin/koha/circ/circulation.pl" method="post" autocomplete="off">
|
||||
[% IF ( CircAutocompl ) %]
|
||||
<div class="autocomplete">
|
||||
<div id="borrowerautocomplete" class="autocomplete">
|
||||
|
@ -72,7 +72,7 @@ YAHOO.util.Event.onContentReady("header_search", function() {
|
|||
[% IF ( CAN_user_circulate ) %]
|
||||
<div id="checkin_search" class="residentsearch" style="display:none;">
|
||||
<p class="tip">Scan a barcode to check in:</p>
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl">
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
|
||||
<input name="barcode" id="ret_barcode" size="40" />
|
||||
<input value="Submit" class="submit" type="submit" />
|
||||
</form>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
[% IF ( CAN_user_circulate ) %]
|
||||
<div id="checkin_search" class="residentsearch" style="display:none;">
|
||||
<p class="tip">Scan a barcode to check in:</p>
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl">
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off">
|
||||
<input name="barcode" id="ret_barcode" size="40" accesskey="r" />
|
||||
<input value="Submit" class="submit" type="submit" />
|
||||
</form>
|
||||
|
|
|
@ -79,7 +79,7 @@ YAHOO.util.Event.onContentReady("header_search", function() {
|
|||
[% IF ( CAN_user_circulate ) %]
|
||||
<div id="circ_search" class="residentsearch" style="display:none;">
|
||||
<p class="tip">Enter patron card number or partial name:</p>
|
||||
<form action="/cgi-bin/koha/circ/circulation.pl" method="post">
|
||||
<form action="/cgi-bin/koha/circ/circulation.pl" method="post" autocomplete="off">
|
||||
[% IF ( CircAutocompl ) %]
|
||||
<div class="autocomplete">
|
||||
<div id="borrowerautocomplete" class="autocomplete">
|
||||
|
|
|
@ -273,7 +273,7 @@ function refocus(calendar) {
|
|||
[% END %]
|
||||
</ul>
|
||||
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl">
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" autocomplete="off">
|
||||
|
||||
[% IF ( RESERVED ) %]
|
||||
<p>
|
||||
|
@ -422,7 +422,7 @@ No patron matched <span class="ex">[% message %]</span>
|
|||
[% IF ( CGIselectborrower ) %]
|
||||
[% INCLUDE 'patron-toolbar.inc' %]
|
||||
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform">
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
|
||||
<fieldset id="circ_circulation_selectborrower" class="brief">
|
||||
<legend>Patron selection</legend>
|
||||
|
||||
|
@ -454,7 +454,7 @@ No patron matched <span class="ex">[% message %]</span>
|
|||
[% END %]
|
||||
|
||||
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform">
|
||||
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform" autocomplete="off">
|
||||
<fieldset id="circ_circulation_issue">
|
||||
[% IF ( DisplayClearScreenButton ) %]
|
||||
<span id="clearscreen"><a href="/cgi-bin/koha/circ/circulation.pl" title="Clear screen">x</a></span>
|
||||
|
|
|
@ -324,7 +324,7 @@ function Dopop(link) {
|
|||
</div>
|
||||
</div>
|
||||
<div class="yui-g">
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl" >
|
||||
<form method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" >
|
||||
<div class="yui-u first">
|
||||
<fieldset>
|
||||
<legend>Check In</legend>
|
||||
|
|
Loading…
Reference in a new issue