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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (+1 lines)
Lines 1379-1384 Link Here
1379
                            return;
1379
                            return;
1380
                        }
1380
                        }
1381
                    },
1381
                    },
1382
                    source: 'catalog',
1382
                    biblio_id: [% biblionumber | uri %]
1383
                    biblio_id: [% biblionumber | uri %]
1383
                };
1384
                };
1384
1385
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/concerns.tt (-1 / +2 lines)
Lines 90-96 Link Here
90
                    } else {
90
                    } else {
91
                        return;
91
                        return;
92
                    }
92
                    }
93
                }
93
                },
94
                source: 'catalog'
94
            };
95
            };
95
96
96
            var tickets_url = '/api/v1/tickets';
97
            var tickets_url = '/api/v1/tickets';
(-)a/koha-tmpl/intranet-tmpl/prog/js/modals/add_catalog_concern.js (+1 lines)
Lines 17-22 $(document).ready(function() { Link Here
17
        let reporter_id = $('#concern_reporter').val();
17
        let reporter_id = $('#concern_reporter').val();
18
18
19
        let params = {
19
        let params = {
20
            source: 'catalog',
20
            title: concern_title,
21
            title: concern_title,
21
            body: concern_body,
22
            body: concern_body,
22
            biblio_id: biblio_id,
23
            biblio_id: biblio_id,
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/modals/catalog_concern.js (-1 / +1 lines)
Lines 35-40 $(document).ready(function() { Link Here
35
        let reporter_id = $('#concern_reporter').val();
35
        let reporter_id = $('#concern_reporter').val();
36
36
37
        params = {
37
        params = {
38
            source: 'catalog',
38
            title: concern_title,
39
            title: concern_title,
39
            body: concern_body,
40
            body: concern_body,
40
            biblio_id: biblio_id,
41
            biblio_id: biblio_id,
41
- 

Return to bug 35616