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

(-)a/Koha/BackgroundJob/BatchUpdateBiblio.pm (-2 / +1 lines)
Lines 92-98 sub process { Link Here
92
            C4::MarcModificationTemplates::ModifyRecordWithTemplate( $mmtid, $record );
92
            C4::MarcModificationTemplates::ModifyRecordWithTemplate( $mmtid, $record );
93
            my $frameworkcode = C4::Biblio::GetFrameworkCode( $biblionumber );
93
            my $frameworkcode = C4::Biblio::GetFrameworkCode( $biblionumber );
94
            C4::Biblio::ModBiblio( $record, $biblionumber, $frameworkcode, {
94
            C4::Biblio::ModBiblio( $record, $biblionumber, $frameworkcode, {
95
                overlay_context => $args->{context},
95
                overlay_context => $args->{overlay_context},
96
            });
96
            });
97
        };
97
        };
98
        if ( $error and $error != 1 or $@ ) { # ModBiblio returns 1 if everything as gone well
98
        if ( $error and $error != 1 or $@ ) { # ModBiblio returns 1 if everything as gone well
99
- 

Return to bug 14957