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

(-)a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js (-2 / +4 lines)
Lines 801-807 function patron_autocomplete(node, options) { Link Here
801
            .append(
801
            .append(
802
                "" +
802
                "" +
803
                    (item.link ? '<a href="' + item.link + '">' : "<a>") +
803
                    (item.link ? '<a href="' + item.link + '">' : "<a>") +
804
                    $patron_to_html(item, { display_cardnumber: true }) +
804
                    $patron_to_html(item, {
805
                        display_cardnumber: true,
806
                        invert_name: true,
807
                    }) +
805
                    " " +
808
                    " " +
806
                    (item.date_of_birth
809
                    (item.date_of_birth
807
                        ? $date(item.date_of_birth) +
810
                        ? $date(item.date_of_birth) +
808
- 

Return to bug 40995