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 109-115 Link Here
109
                        }
109
                        }
110
                        return $( "<li></li>" )
110
                        return $( "<li></li>" )
111
                        .data( "ui-autocomplete-item", item )
111
                        .data( "ui-autocomplete-item", item )
112
                        .append( "<a href=\"" + item.link + "\">" + item.surname + ", " + item.firstname + cardnumber + " <small>" + item.dateofbirth + " " + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
112
                        .append( "<a href=\"" + item.link + "\">" + item.surname + ", " + item.firstname + cardnumber + " <small>" + item.dateofbirth + " (" + item.age + ") " + item.address + " " + item.city + " " + item.zipcode + " " + item.country + "</small></a>" )
113
                        .appendTo( ul );
113
                        .appendTo( ul );
114
                    };
114
                    };
115
                }
115
                }
116
- 

Return to bug 15400