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 1381-1386 Link Here
1381
                            return;
1381
                            return;
1382
                        }
1382
                        }
1383
                    },
1383
                    },
1384
                    source: 'catalog',
1384
                    biblio_id: [% biblionumber | uri %]
1385
                    biblio_id: [% biblionumber | uri %]
1385
                };
1386
                };
1386
1387
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/concerns.tt (-1 / +2 lines)
Lines 89-95 Link Here
89
                    } else {
89
                    } else {
90
                        return;
90
                        return;
91
                    }
91
                    }
92
                }
92
                },
93
                source: 'catalog'
93
            };
94
            };
94
95
95
            var tickets_url = '/api/v1/tickets';
96
            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