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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-3 / +2 lines)
Lines 905-913 $(document).ready(function() { Link Here
905
                                  + ( oObj.enumchron || "" )
905
                                  + ( oObj.enumchron || "" )
906
                              + '</a>';
906
                              + '</a>';
907
                              if ( oObj.author ) {
907
                              if ( oObj.author ) {
908
                                title += 'by ' + oObj.author;
908
                                title += ' by ' + oObj.author;
909
                              }
909
                              }
910
                              title += '<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
910
                              title += ' <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=' + oObj.biblionumber + '&itemnumber=' + oObj.itemnumber + '">' + oObj.barcode + '</a>';
911
911
912
                              return title;
912
                              return title;
913
                        }
913
                        }
914
- 

Return to bug 24725