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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 / +2 lines)
Lines 338-344 $(document).ready(function() { Link Here
338
                              + "#"
338
                              + "#"
339
                              + oObj.itemnumber
339
                              + oObj.itemnumber
340
                              + "'>"
340
                              + "'>"
341
                              + oObj.barcode.escapeHtml()
341
                              + (oObj.barcode ? oObj.barcode.escapeHtml() : "")
342
                              + "</a>"
342
                              + "</a>"
343
                              + onsite_checkout
343
                              + onsite_checkout
344
344
Lines 721-727 $(document).ready(function() { Link Here
721
                                  + "#"
721
                                  + "#"
722
                                  + oObj.itemnumber
722
                                  + oObj.itemnumber
723
                                  + "'>"
723
                                  + "'>"
724
                                  + oObj.barcode.escapeHtml()
724
                                  + (oObj.barcode ? oObj.barcode.escapeHtml() : "")
725
                                  + "</a>"
725
                                  + "</a>"
726
                                  + onsite_checkout;
726
                                  + onsite_checkout;
727
727
728
- 

Return to bug 24166