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

(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (+1 lines)
Lines 960-965 $(document).ready(function() { Link Here
960
                        "mDataProp": function ( oObj ) {
960
                        "mDataProp": function ( oObj ) {
961
                              let title = '<a class="return-claim-title strong" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=' + oObj.biblionumber + '">'
961
                              let title = '<a class="return-claim-title strong" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=' + oObj.biblionumber + '">'
962
                                  + oObj.title
962
                                  + oObj.title
963
                                  + ( oObj.subtitle ? oObj.subtitle : "" )
963
                                  + ( oObj.enumchron || "" )
964
                                  + ( oObj.enumchron || "" )
964
                              + '</a>';
965
                              + '</a>';
965
                              if ( oObj.author ) {
966
                              if ( oObj.author ) {
(-)a/svc/return_claims (-1 / +1 lines)
Lines 73-78 my $sql = qq{ Link Here
73
73
74
        biblio.biblionumber,
74
        biblio.biblionumber,
75
        biblio.title,
75
        biblio.title,
76
        biblio.subtitle,
76
        biblio.author,
77
        biblio.author,
77
78
78
        items.enumchron,
79
        items.enumchron,
79
- 

Return to bug 27306