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 819-828 $(document).ready(function() { Link Here
819
                    {
819
                    {
820
                        "mDataProp": function( oObj ) {
820
                        "mDataProp": function( oObj ) {
821
                            return "<a href='/cgi-bin/koha/members/moremember.pl?borrowernumber=" + oObj.borrowernumber + "'>"
821
                            return "<a href='/cgi-bin/koha/members/moremember.pl?borrowernumber=" + oObj.borrowernumber + "'>"
822
                                + oObj.borrower.firstname.escapeHtml()
822
                                + ( oObj.borrower.firstname ? oObj.borrower.firstname.escapeHtml() : "" )
823
                                + " " +
823
                                + " " +
824
                                oObj.borrower.surname.escapeHtml()
824
                                ( oObj.borrower.surname ? oObj.borrower.surname.escapeHtml() : "" )
825
                                + " (" + oObj.borrower.cardnumber.escapeHtml() + ")</a>"
825
                                + " (" + ( oObj.borrower.cardnumber ? oObj.borrower.cardnumber.escapeHtml() : "" ) + ")</a>"
826
                        }
826
                        }
827
                    },
827
                    },
828
                ],
828
                ],
829
- 

Return to bug 26797