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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-4 / +3 lines)
Lines 817-826 $(document).ready(function() { Link Here
817
                    {
817
                    {
818
                        "mDataProp": function( oObj ) {
818
                        "mDataProp": function( oObj ) {
819
                            return "<a href='/cgi-bin/koha/members/moremember.pl?borrowernumber=" + oObj.borrowernumber + "'>"
819
                            return "<a href='/cgi-bin/koha/members/moremember.pl?borrowernumber=" + oObj.borrowernumber + "'>"
820
                                + oObj.borrower.firstname.escapeHtml()
820
                                + ( oObj.borrower.firstname ? oObj.borrower.firstname.escapeHtml() : "" )
821
                                + " " +
821
                                + " " +
822
                                oObj.borrower.surname.escapeHtml()
822
                                ( oObj.borrower.surname ? oObj.borrower.surname.escapeHtml() : "" )
823
                                + " (" + oObj.borrower.cardnumber.escapeHtml() + ")</a>"
823
                                + " (" + ( oObj.borrower.cardnumber ? oObj.borrower.cardnumber.escapeHtml() : "" ) + ")</a>"
824
                        }
824
                        }
825
                    },
825
                    },
826
                ],
826
                ],
827
- 

Return to bug 26797