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 138-144 $(document).ready(function() { Link Here
138
                            title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
138
                            title = "<a href='/cgi-bin/koha/reserve/request.pl?biblionumber="
139
                                  + oObj.biblionumber
139
                                  + oObj.biblionumber
140
                                  + "'>"
140
                                  + "'>"
141
                                  + oObj.title.escapeHtml();
141
                                  + (oObj.title ? oObj.title.escapeHtml() : __('No title'));
142
142
143
                            $.each(oObj.subtitle, function( index, value ) {
143
                            $.each(oObj.subtitle, function( index, value ) {
144
                                title += " " + value.escapeHtml();
144
                                title += " " + value.escapeHtml();
145
- 

Return to bug 28723