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

(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-3 / +2 lines)
Lines 54-64 $(document).ready(function() { Link Here
54
                        "mDataProp": function( oObj ) {
54
                        "mDataProp": function( oObj ) {
55
                            var data = "";
55
                            var data = "";
56
                            if ( oObj.barcode ) {
56
                            if ( oObj.barcode ) {
57
                                data += " <a href='/cgi-bin/koha/catalogue/detail.pl?biblionumber="
57
                                data += " <a href='/cgi-bin/koha/catalogue/moredetail.pl?biblionumber="
58
                                  + oObj.biblionumber
58
                                  + oObj.biblionumber
59
                                  + "&itemnumber="
59
                                  + "&itemnumber="
60
                                  + oObj.itemnumber
60
                                  + oObj.itemnumber
61
                                  + "#"
61
                                  + "#item"
62
                                  + oObj.itemnumber
62
                                  + oObj.itemnumber
63
                                  + "'>"
63
                                  + "'>"
64
                                  + oObj.barcode.escapeHtml()
64
                                  + oObj.barcode.escapeHtml()
65
- 

Return to bug 22633