From cc88e638a1efb991196a77efad3ba6d25eb8f6c0 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 6 Jul 2014 21:00:40 +0200 Subject: [PATCH] Bug 12409: Follow up - Reflect from hash to array in comments Signed-off-by: Tomas Cohen Arazi Signed-off-by: Galen Charlton --- C4/Record.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Record.pm b/C4/Record.pm index ba2fb39b68..cbec11a027 100644 --- a/C4/Record.pm +++ b/C4/Record.pm @@ -668,14 +668,14 @@ sub marc2bibtex { } $author = join ' and ', @texauthors; - # Defining the conversion hash according to the marcflavour + # Defining the conversion array according to the marcflavour my @bh; if ( $marcflavour eq "UNIMARC" ) { # FIXME, TODO : handle repeatable fields # TODO : handle more types of documents - # Unimarc to bibtex hash + # Unimarc to bibtex array @bh = ( # Mandatory @@ -695,7 +695,7 @@ sub marc2bibtex { ); } else { - # Marc21 to bibtex hash + # Marc21 to bibtex array @bh = ( # Mandatory -- 2.39.5