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

(-)a/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl (-1 / +1 lines)
Lines 88-94 sub updateMarc { Link Here
88
    $biblio  &&= $biblio->metadata->record;
88
    $biblio  &&= $biblio->metadata->record;
89
89
90
    unless ($biblio) {
90
    unless ($biblio) {
91
        $debug and warn '[ERROR] Biblio not found.';
91
        $debug and warn '[ERROR] Bibliographic record not found.';
92
        return;
92
        return;
93
    }
93
    }
94
94
(-)a/misc/maintenance/process_record_through_filter.pl (-2 / +1 lines)
Lines 13-19 use Koha::RecordProcessor; Link Here
13
13
14
my $biblio = Koha::Biblios->find($ARGV[0]);
14
my $biblio = Koha::Biblios->find($ARGV[0]);
15
unless ( $biblio ) {
15
unless ( $biblio ) {
16
    print "Biblio not found\n";
16
    print "Bibliographic record not found\n";
17
    exit;
17
    exit;
18
}
18
}
19
my $record = $biblio->metadata->record;
19
my $record = $biblio->metadata->record;
20
- 

Return to bug 37791