From 09b01f21276c309b4741abf31aafae9b2341c16f Mon Sep 17 00:00:00 2001 From: Janusz Kaczmarek Date: Mon, 18 Mar 2013 22:16:22 +0200 Subject: [PATCH] Bug 10324: fix display of editorial series in normal view (UNIMARC / no XSLT) The patch corrects the issue -- the content of the field 225 shall be displayes under Series now. Signed-off-by: Bernardo Gonzalez Kriegel Comment: Work as described, no koha-qa errors Signed-off-by: Katrin Fischer Comparing the XSLT with the normal view the patch seems to work correctly. Passes all tests and QA script. Signed-off-by: Galen Charlton (cherry picked from commit 384566c1295a81dce0d9de001fcde36f2a996dfa) Signed-off-by: Tomas Cohen Arazi --- C4/Biblio.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 7af8619ad5..38dda062cf 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -1973,9 +1973,9 @@ sub GetMarcSeries { my ( $record, $marcflavour ) = @_; my ( $mintag, $maxtag, $fields_filter ); if ( $marcflavour eq "UNIMARC" ) { - $mintag = "600"; - $maxtag = "619"; - $fields_filter = '6..'; + $mintag = "225"; + $maxtag = "225"; + $fields_filter = '2..'; } else { # marc21/normarc $mintag = "440"; $maxtag = "490"; -- 2.20.1