Bug 8981 - Remove Nonpublic General Note from OPAC authorities display
authorDavid Cook <dcook@prosentient.com.au>
Mon, 29 Oct 2012 22:06:45 +0000 (09:06 +1100)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 30 Nov 2012 03:07:29 +0000 (22:07 -0500)
Currently, the MARC21 667 Nonpublic General Note field is appearing on the opac-authoritiesdetail.pl page.

Since it is a nonpublic note, it makes sense to remove it from this view.

This patch adds in an extra condition that checks authority records for MARC21 667 fields before displaying them in this opac screen.

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Does what it says, with no side effects

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
opac/opac-authoritiesdetail.pl

index 195e244..86ecb23 100755 (executable)
@@ -134,6 +134,9 @@ if ($show_marc) {
             $subfield_data{marc_tag}      = $field->tag();
             push( @subfields_data, \%subfield_data );
         }
+        elsif ( C4::Context->preference('MarcFlavour') eq 'MARC21' && $field->tag() eq 667 ) {
+            # tagfield 667 is a nonpublic general note in MARC21, which shouldn't be shown in the OPAC
+        }
         else {
             my @subf = $field->subfields;