From 54452a180c0257572e08b13a0943e3912cf86aca Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 15 Sep 2023 13:00:54 -0400 Subject: [PATCH] Bug 33958: (QA follow-up) tidy normalized_oclc Signed-off-by: Kyle M Hall Signed-off-by: Nick Clemens --- Koha/Biblio.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index a82fc01d12..46f96df61c 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -1303,9 +1303,9 @@ Normalizes and returns the OCLC number found in the MARC record. =cut sub normalized_oclc { - my ( $self ) = @_; + my ($self) = @_; my $marc_record = $self->metadata->record; - return C4::Koha::GetNormalizedOCLCNumber( $marc_record ); + return C4::Koha::GetNormalizedOCLCNumber($marc_record); } =head3 to_api -- 2.30.2