Bug 10324: fix display of editorial series in normal view (UNIMARC / no XSLT)
authorJanusz Kaczmarek <januszop@gmail.com>
Mon, 18 Mar 2013 20:16:22 +0000 (22:16 +0200)
committerGalen Charlton <gmc@esilibrary.com>
Sun, 8 Sep 2013 01:33:35 +0000 (01:33 +0000)
The patch corrects the issue -- the content of the field 225 shall be
displayes under Series now.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Comment: Work as described, no koha-qa errors

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Comparing the XSLT with the normal view the patch seems to
work correctly. Passes all tests and QA script.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
C4/Biblio.pm

index e94b0eb..cf83ae6 100644 (file)
@@ -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";