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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-2 / +7 lines)
Lines 908-914 $(document).ready(function() { Link Here
908
                              if ( oObj.author ) {
908
                              if ( oObj.author ) {
909
                                title += ' by ' + oObj.author;
909
                                title += ' by ' + oObj.author;
910
                              }
910
                              }
911
                              title += ' <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
911
                              title += ' <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber='
912
                                    + oObj.biblionumber
913
                                    + '&itemnumber='
914
                                    + oObj.itemnumber
915
                                    + '">'
916
                                    + (oObj.barcode ? oObj.barcode.escapeHtml() : "")
917
                                    + '</a>';
912
918
913
                              return title;
919
                              return title;
914
                        }
920
                        }
915
- 

Return to bug 25291