[Koha-bugs] [Bug 31618] Typo in POD for C4::ImportBatch::RecordsFromMARCXMLFile

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Jun 22 22:21:17 CEST 2023


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31618

Katrin Fischer <katrin.fischer at bsz-bw.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         QA Contact|testopia at bugs.koha-communit |katrin.fischer at bsz-bw.de
                   |y.org                       |

--- Comment #3 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
The git diff was a bit confusing here, as it looks like this POD was changed:

=head2 RecordsFromISO2709File

    my ($errors, $records) =
C4::ImportBatch::RecordsFromISO2709File($input_file, $record_type, $encoding);

Reads ISO2709 binary porridge from the given file and creates
MARC::Record-objects out of it.

@PARAM1, String, absolute path to the ISO2709 file.
@PARAM2, String, see stage_file.pl
@PARAM3, String, should be utf8

Returns two array refs.

=cut

But it's actually this one:

=head2 RecordsFromMARCXMLFile

    my ($errors, $records) =
C4::ImportBatch::RecordsFromMARCXMLFile($input_file, $encoding);

Creates MARC::Record-objects out of the given MARCXML-file.

@PARAM1, String, absolute path to the MARCXML file.
@PARAM2, String, should be utf8

Returns two array refs.

=cut

So we are good! Welcome Sam to the Koha devs!

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list