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

(-)a/C4/Biblio.pm (-6 / +3 lines)
Lines 212-219 sub AddBiblio { Link Here
212
212
213
    $options //= {};
213
    $options //= {};
214
    my $skip_record_index = $options->{'skip_record_index'} // 0;
214
    my $skip_record_index = $options->{'skip_record_index'} // 0;
215
    my $defer_marc_save = $options->{defer_marc_save} // 0;
215
    my $defer_marc_save   = $options->{defer_marc_save}     // 0;
216
    my $disable_autolink = $options->{disable_autolink} // 0;
216
    my $disable_autolink  = $options->{disable_autolink}    // 0;
217
217
218
    if (!$record) {
218
    if (!$record) {
219
        carp('AddBiblio called with undefined record');
219
        carp('AddBiblio called with undefined record');
Lines 375-383 sub ModBiblio { Link Here
375
    my ( $record, $biblionumber, $frameworkcode, $options ) = @_;
375
    my ( $record, $biblionumber, $frameworkcode, $options ) = @_;
376
376
377
    $options //= {};
377
    $options //= {};
378
    my $mod_biblio_marc_options = {
378
    my $mod_biblio_marc_options = { skip_record_index => $options->{'skip_record_index'} // 0 };
379
        skip_record_index => $options->{'skip_record_index'} // 0
380
    };
381
379
382
    if (!$record) {
380
    if (!$record) {
383
        carp 'No record passed to ModBiblio';
381
        carp 'No record passed to ModBiblio';
384
- 

Return to bug 29440