[Koha-patches] [PATCH] [SIGNED-OFF] Bug 5703: Hide the $9 subfield (linked authid) when showing series for a MARC record in normal view.

Nicole C. Engard nengard at bywatersolutions.com
Mon Mar 7 19:18:41 CET 2011


From: Frédérick Capovilla <frederick.capovilla at sys-tech.net>


Signed-off-by: Nicole C. Engard <nengard at bywatersolutions.com>
---
 C4/Biblio.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/C4/Biblio.pm b/C4/Biblio.pm
index 8ea5da5..1daa70a 100644
--- a/C4/Biblio.pm
+++ b/C4/Biblio.pm
@@ -1610,7 +1610,7 @@ sub GetMarcSeries {
             if ($volume_number) {
                 push @subfields_loop, { volumenum => $value };
             } else {
-                push @subfields_loop, { code => $code, value => $value, link_loop => \@link_loop, separator => $separator, volumenum => $volume_number };
+                push @subfields_loop, { code => $code, value => $value, link_loop => \@link_loop, separator => $separator, volumenum => $volume_number } unless ( $series_subfield->[0] eq '9' );
             }
             $counter++;
         }
-- 
1.7.2.3



More information about the Koha-patches mailing list