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

(-)a/Koha/Biblio.pm (-3 / +2 lines)
Lines 1303-1311 Normalizes and returns the OCLC number found in the MARC record. Link Here
1303
=cut
1303
=cut
1304
1304
1305
sub normalized_oclc {
1305
sub normalized_oclc {
1306
    my ( $self ) = @_;
1306
    my ($self) = @_;
1307
    my $marc_record = $self->metadata->record;
1307
    my $marc_record = $self->metadata->record;
1308
    return C4::Koha::GetNormalizedOCLCNumber( $marc_record );
1308
    return C4::Koha::GetNormalizedOCLCNumber($marc_record);
1309
}
1309
}
1310
1310
1311
=head3 to_api
1311
=head3 to_api
1312
- 

Return to bug 33958