From 117078dd1213123b432c75f8ac77ae8844ddec79 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 2 May 2022 11:08:41 +0200 Subject: [PATCH] Bug 29897: Add and fix POD Sponsored-by: Orex Digital --- Koha/Biblio.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index de76a6655fe..649d77dda50 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -967,6 +967,13 @@ sub get_marc_notes { return \@marcnotes; } +=head3 _get_marc_authors + +Private method to return the list of authors contained in the MARC record. +See get get_marc_contributors and get_marc_authors for the public methods. + +=cut + sub _get_marc_authors { my ( $self, $params ) = @_; @@ -1057,7 +1064,7 @@ sub _get_marc_authors { my $contributors = $biblio->get_marc_contributors; Get all contributors (but first author) from the MARC record and returns them in an array. -They are stored in different fields depending on MARC flavour (700..712 for MARC21) +They are stored in different fields depending on MARC flavour (700..720 for MARC21) =cut @@ -1092,7 +1099,7 @@ sub get_marc_contributors { Get all authors from the MARC record and returns them in an array. They are stored in different fields depending on MARC flavour -(main author from 100 then secondary authors from 700..712). +(main author from 100 then secondary authors from 700..720). =cut -- 2.25.1