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

(-)a/circ/ysearch.pl (+1 lines)
Lines 83-88 while ( my $b = $borrowers_rs->next ) { Link Here
83
      { borrowernumber => $b->borrowernumber,
83
      { borrowernumber => $b->borrowernumber,
84
        surname        => $b->surname    // '',
84
        surname        => $b->surname    // '',
85
        firstname      => $b->firstname  // '',
85
        firstname      => $b->firstname  // '',
86
        initials       => $b->initials  // '',
86
        cardnumber     => $b->cardnumber // '',
87
        cardnumber     => $b->cardnumber // '',
87
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
88
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
88
        address        => $b->address    // '',
89
        address        => $b->address    // '',
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search-box.inc (-2 / +1 lines)
Lines 13-19 $(document).ready(function(){ Link Here
13
    .data( "ui-autocomplete" )._renderItem = function( ul, item ) {
13
    .data( "ui-autocomplete" )._renderItem = function( ul, item ) {
14
        return $( "<li></li>" )
14
        return $( "<li></li>" )
15
        .data( "ui-autocomplete-item", item )
15
        .data( "ui-autocomplete-item", item )
16
        .append( "<a>" + item.surname + ", " + item.firstname + " (" + item.cardnumber + ") <small>" + item.dateofbirth + " " + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
16
        .append( "<a><b>" + item.surname + ", " + item.firstname + "</b> <i>" + item.initials + "</i>" + " (" + item.cardnumber + ") <small>" + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
17
        .appendTo( ul );
17
        .appendTo( ul );
18
    };
18
    };
19
19
20
- 

Return to bug 17550