[Koha-patches] [PATCH] bug 2479: allow MARC21 bib 440 to link to authorities

Galen Charlton galen.charlton at liblime.com
Wed Aug 6 18:32:15 CEST 2008


Fixed overly-strict interpretation of OCLC practice
that prevented 440 series statement/added entries
from linking to the appropriate series authority
record.
---
 C4/Heading/MARC21.pm |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/C4/Heading/MARC21.pm b/C4/Heading/MARC21.pm
index f6e712a..1f1475a 100644
--- a/C4/Heading/MARC21.pm
+++ b/C4/Heading/MARC21.pm
@@ -52,6 +52,7 @@ my $bib_heading_fields = {
     '110' => { auth_type => 'CORPO_NAME', subfields => 'abcdefghklmnoprst', main_entry => 1 },
     '111' => { auth_type => 'MEETI_NAME', subfields => 'acdefghjklnpqst', main_entry => 1 },
     '130' => { auth_type => 'UNIF_TITLE', subfields => 'adfghklmnoprst', main_entry => 1 },
+    '440' => { auth_type => 'UNIF_TITLE', subfields => 'anp', series => 1 },
     '600' => { auth_type => 'PERSO_NAME', subfields => 'abcdefghjklmnopqrstvxyz', subject => 1 },
     '610' => { auth_type => 'CORPO_NAME', subfields => 'abcdefghklmnoprstvxyz', subject => 1 },
     '611' => { auth_type => 'MEETI_NAME', subfields => 'acdefghjklnpqstvxyz', subject => 1 },
-- 
1.5.5.GIT




More information about the Koha-patches mailing list