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

(-)a/circ/ysearch.pl (+1 lines)
Lines 85-90 while ( my $b = $borrowers_rs->next ) { Link Here
85
        firstname      => $b->firstname  // '',
85
        firstname      => $b->firstname  // '',
86
        cardnumber     => $b->cardnumber // '',
86
        cardnumber     => $b->cardnumber // '',
87
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
87
        dateofbirth    => format_sqldatetime($b->dateofbirth, undef, undef, 1) // '',
88
        age            => $b->get_age    // 'Age unknown',
88
        address        => $b->address    // '',
89
        address        => $b->address    // '',
89
        city           => $b->city       // '',
90
        city           => $b->city       // '',
90
        zipcode        => $b->zipcode    // '',
91
        zipcode        => $b->zipcode    // '',
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/js_includes.inc (-2 / +1 lines)
Lines 105-111 Link Here
105
                    obj._renderItem = function( ul, item ) {
105
                    obj._renderItem = function( ul, item ) {
106
                        return $( "<li></li>" )
106
                        return $( "<li></li>" )
107
                        .data( "ui-autocomplete-item", item )
107
                        .data( "ui-autocomplete-item", item )
108
                        .append( "<a>" + item.surname + ", " + item.firstname + " (" + item.cardnumber + ") <small>" + item.dateofbirth + " " + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
108
                        .append( "<a>" + item.surname + ", " + item.firstname + " (" + item.cardnumber + ") <small>" + item.dateofbirth + " (" + item.age + ") " + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
109
                        .appendTo( ul );
109
                        .appendTo( ul );
110
                    };
110
                    };
111
                }
111
                }
112
- 

Return to bug 15400