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

(-)a/Koha/REST/V1/Biblios.pm (-3 / +2 lines)
Lines 76-82 sub get { Link Here
76
                mij => {
76
                mij => {
77
                    status => 200,
77
                    status => 200,
78
                    format => 'mij',
78
                    format => 'mij',
79
                    text   => $record->to_mij
79
                    data   => $record->to_mij
80
                },
80
                },
81
                marc => {
81
                marc => {
82
                    status => 200,
82
                    status => 200,
Lines 207-213 sub get_public { Link Here
207
            mij => {
207
            mij => {
208
                status => 200,
208
                status => 200,
209
                format => 'mij',
209
                format => 'mij',
210
                text   => $record->to_mij
210
                data   => $record->to_mij
211
            },
211
            },
212
            marc => {
212
            marc => {
213
                status => 200,
213
                status => 200,
214
- 

Return to bug 28604