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

(-)a/installer/data/mysql/atomicupdate/bug_33117.pl (-1 / +1 lines)
Lines 8-14 return { Link Here
8
        my ($dbh, $out) = @$args{qw(dbh out)};
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        # Do you stuffs here
9
        # Do you stuffs here
10
        $dbh->do(q{INSERT INTO systempreferences (`variable`,`value`,`explanation`,`options`,`type`) VALUES
10
        $dbh->do(q{INSERT INTO systempreferences (`variable`,`value`,`explanation`,`options`,`type`) VALUES
11
                ('PatronAutoCompleteSearchMethod','1','Allows staff to search for patrons using the method','Starts with|Contains','YesNo'});
11
                ('PatronAutoCompleteSearchMethod','1','Allows staff to search for patrons using the method','Starts with|Contains','YesNo')});
12
12
13
                say $out "Added new system preference 'PatronAutoCompleteSearchMethod'";
13
                say $out "Added new system preference 'PatronAutoCompleteSearchMethod'";
14
                },
14
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-4 / +4 lines)
Lines 27-36 Circulation: Link Here
27
            - to guess the patron being entered while typing a patron search for circulation or patron search.
27
            - to guess the patron being entered while typing a patron search for circulation or patron search.
28
            - Only returns the first 10 results at a time.
28
            - Only returns the first 10 results at a time.
29
        -
29
        -
30
           - pref: PatronAutoCompleteSearchMethod
30
            - pref: PatronAutoCompleteSearchMethod
31
             choices:
31
              choices:
32
                 1: Starts with
32
                  1: Starts with
33
                 0: "Contains"
33
                  0: "Contains"
34
            - Enable this search method to determine whether to use Starts with or Contains for autocomplete patron searches.
34
            - Enable this search method to determine whether to use Starts with or Contains for autocomplete patron searches.
35
        -
35
        -
36
            - pref: itemBarcodeInputFilter
36
            - pref: itemBarcodeInputFilter
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (-1 / +1 lines)
Lines 1265-1271 Link Here
1265
        <xsl:for-each select="marc:datafield[@tag=775]">
1265
        <xsl:for-each select="marc:datafield[@tag=775]">
1266
            <xsl:variable name="f775">
1266
            <xsl:variable name="f775">
1267
                <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1267
                <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1268
                <xsl:with-param name="codes">a_t</xsl:with-param>
1268
                <xsl:with-param name="codes">t</xsl:with-param>
1269
                </xsl:call-template></xsl:with-param></xsl:call-template>
1269
                </xsl:call-template></xsl:with-param></xsl:call-template>
1270
            </xsl:variable>
1270
            </xsl:variable>
1271
            <xsl:if test="marc:subfield[@code='i']">
1271
            <xsl:if test="marc:subfield[@code='i']">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +1 lines)
Lines 1506-1512 Link Here
1506
        <xsl:for-each select="marc:datafield[@tag=775]">
1506
        <xsl:for-each select="marc:datafield[@tag=775]">
1507
            <xsl:variable name="f775">
1507
            <xsl:variable name="f775">
1508
                <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1508
                <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1509
                <xsl:with-param name="codes">a_t</xsl:with-param>
1509
                <xsl:with-param name="codes">t</xsl:with-param>
1510
                </xsl:call-template></xsl:with-param></xsl:call-template>
1510
                </xsl:call-template></xsl:with-param></xsl:call-template>
1511
            </xsl:variable>
1511
            </xsl:variable>
1512
            <xsl:if test="marc:subfield[@code='i']">
1512
            <xsl:if test="marc:subfield[@code='i']">
(-)a/members/member.pl (-2 / +1 lines)
Lines 54-60 if ( $quicksearch and $searchmember && !$circsearch ) { Link Here
54
    }
54
    }
55
    my $patron = Koha::Patrons->find( { cardnumber => $searchmember } );
55
    my $patron = Koha::Patrons->find( { cardnumber => $searchmember } );
56
    if (
56
    if (
57
        $patron
57
        0 and $patron
58
        and (  ( $branchcode and $patron->branchcode eq $branchcode )
58
        and (  ( $branchcode and $patron->branchcode eq $branchcode )
59
            or ( not $branchcode ) )
59
            or ( not $branchcode ) )
60
      )
60
      )
61
- 

Return to bug 32695