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

(-)a/Koha/Exporter/Record.pm (-6 / +5 lines)
Lines 116-127 sub _get_authority_for_export { Link Here
116
}
116
}
117
117
118
sub _get_biblio_for_export {
118
sub _get_biblio_for_export {
119
    my ($params)     = @_;
119
    my ($params)                       = @_;
120
    my $biblionumber = $params->{biblionumber};
120
    my $biblionumber                   = $params->{biblionumber};
121
    my $itemnumbers  = $params->{itemnumbers};
121
    my $itemnumbers                    = $params->{itemnumbers};
122
    my $export_items = $params->{export_items} // 1;
122
    my $export_items                   = $params->{export_items} // 1;
123
    my $only_export_items_for_branches = $params->{only_export_items_for_branches};
123
    my $only_export_items_for_branches = $params->{only_export_items_for_branches};
124
    my $embed_see_from_headings = $params->{embed_see_from_headings};
124
    my $embed_see_from_headings        = $params->{embed_see_from_headings};
125
125
126
    my $biblio = Koha::Biblios->find($biblionumber);
126
    my $biblio = Koha::Biblios->find($biblionumber);
127
    my $record = eval { $biblio->metadata->record };
127
    my $record = eval { $biblio->metadata->record };
128
- 

Return to bug 31286