View | Details | Raw Unified | Return to bug 12283
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/home-search.inc (-1 / +1 lines)
Lines 25-31 Link Here
25
<div id="patron_search" class="residentsearch">
25
<div id="patron_search" class="residentsearch">
26
    <p class="tip">Enter patron card number or partial name:</p>
26
    <p class="tip">Enter patron card number or partial name:</p>
27
    <form action="/cgi-bin/koha/members/member.pl" method="post">
27
    <form action="/cgi-bin/koha/members/member.pl" method="post">
28
        <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text"/>
28
        <input name="searchmember" class="head-searchbox" id="searchmember" size="40" type="text" autocomplete="off" />
29
        <input type="hidden" name="quicksearch" value="1" />
29
        <input type="hidden" name="quicksearch" value="1" />
30
        <input value="Submit" class="submit" type="submit" />
30
        <input value="Submit" class="submit" type="submit" />
31
    </form>
31
    </form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc (-1 / +1 lines)
Lines 12-18 Link Here
12
            [% END %]
12
            [% END %]
13
        </div>
13
        </div>
14
	[% ELSE %]
14
	[% ELSE %]
15
            <input id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" />
15
            <input id="findborrower" name="findborrower" size="40" class="head-searchbox focus" type="text" autocomplete="off" />
16
            [% IF ( stickyduedate ) %]
16
            [% IF ( stickyduedate ) %]
17
            <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
17
            <input type="hidden" name="duedatespec" value="[% duedatespec | html %]" />
18
            <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
18
            <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-1 / +1 lines)
Lines 7-13 Link Here
7
    <div id="patron_search" class="residentsearch">
7
    <div id="patron_search" class="residentsearch">
8
    <p class="tip">Enter patron card number or partial name:</p>
8
    <p class="tip">Enter patron card number or partial name:</p>
9
    <form action="/cgi-bin/koha/members/member.pl" method="post">
9
    <form action="/cgi-bin/koha/members/member.pl" method="post">
10
    <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember | html %]"/>
10
    <input id="searchmember" data-toggle="tooltip" size="25" class="head-searchbox focus" name="searchmember" type="text" value="[% searchmember | html %]" autocomplete="off" />
11
    <input type="hidden" name="quicksearch" value="1" />
11
    <input type="hidden" name="quicksearch" value="1" />
12
    <span class="filteraction" id="filteraction_off"> <a href="#">[-]</a></span>
12
    <span class="filteraction" id="filteraction_off"> <a href="#">[-]</a></span>
13
    <span class="filteraction" id="filteraction_on"> <a href="#">[+]</a></span>
13
    <span class="filteraction" id="filteraction_on"> <a href="#">[+]</a></span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +1 lines)
Lines 68-74 Link Here
68
        [% UNLESS borrowers %]
68
        [% UNLESS borrowers %]
69
                <label for="patron">Patron: </label>
69
                <label for="patron">Patron: </label>
70
                <div class="hint">Enter patron card number or partial name:</div>
70
                <div class="hint">Enter patron card number or partial name:</div>
71
                <input type="text" size="40" id="patron" class="focus" name="findborrower" />
71
                <input type="text" size="40" id="patron" class="focus" name="findborrower" autocomplete="off" />
72
                <input type="submit" value="Search" />
72
                <input type="submit" value="Search" />
73
            [% IF multi_hold %]
73
            [% IF multi_hold %]
74
                <input type="hidden" name="multi_hold" value="[% multi_hold | html %]"/>
74
                <input type="hidden" name="multi_hold" value="[% multi_hold | html %]"/>
75
- 

Return to bug 12283