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

(-)a/circ/ysearch.pl (-1 / +2 lines)
Lines 47-53 my $sql = qq(SELECT surname, firstname, cardnumber, address, city, zipcode, coun Link Here
47
             WHERE surname LIKE ?
47
             WHERE surname LIKE ?
48
             OR firstname LIKE ?
48
             OR firstname LIKE ?
49
             OR cardnumber LIKE ?
49
             OR cardnumber LIKE ?
50
             ORDER BY surname, firstname);
50
             ORDER BY surname, firstname
51
             LIMIT 10);
51
my $sth = $dbh->prepare( $sql );
52
my $sth = $dbh->prepare( $sql );
52
$sth->execute("$query%", "$query%", "$query%");
53
$sth->execute("$query%", "$query%", "$query%");
53
54
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +1 lines)
Lines 7-12 Circulation: Link Here
7
                  yes: Try
7
                  yes: Try
8
                  no: "Don't try"
8
                  no: "Don't try"
9
            - to guess the patron being entered while typing a patron search on the circulation screen.
9
            - to guess the patron being entered while typing a patron search on the circulation screen.
10
            - Only returns the first 10 results are returned at a time.
10
        -
11
        -
11
            - pref: itemBarcodeInputFilter
12
            - pref: itemBarcodeInputFilter
12
              choices:
13
              choices:
13
- 

Return to bug 6773