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

(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-2 / +1 lines)
Lines 24-30 $(document).ready(function() { Link Here
24
                            title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
24
                            title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
25
                                  + oObj.biblionumber
25
                                  + oObj.biblionumber
26
                                  + "'>"
26
                                  + "'>"
27
                                  + oObj.title.escapeHtml();
27
                                  + (oObj.title ? oObj.title.escapeHtml() : 'No title');
28
28
29
                            $.each(oObj.subtitle, function( index, value ) {
29
                            $.each(oObj.subtitle, function( index, value ) {
30
                                title += " " + value.escapeHtml();
30
                                title += " " + value.escapeHtml();
31
- 

Return to bug 28723