From 65e5919185a7567552ba6d479555e3646cc049e3 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 6 Aug 2008 11:32:15 -0500 Subject: [PATCH] bug 2479: allow MARC21 bib 440 to link to authorities Fixed overly-strict interpretation of OCLC practice that prevented 440 series statement/added entries from linking to the appropriate series authority record. Signed-off-by: Joshua Ferraro --- C4/Heading/MARC21.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Heading/MARC21.pm b/C4/Heading/MARC21.pm index f6e712af9e..1f1475a8d4 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 }, -- 2.39.5