From f087724dc77793ffd1df7016029f8730d16fcd39 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 17 Oct 2018 14:43:11 -0400 Subject: [PATCH] Bug 21589: Series link formed from 830 field is incorrect Content-Type: text/plain; charset=utf-8 Bug 13692 corrected the series link for records using a 490/800 combination When a record has a 490/830 conbination for series, the link is malformed (title is used as author, title is blank) Test Plan: 1) Catalog two or more records with 830 fields 2) Note the series links are broken 3) Apply this patch 4) Reload the record details page 5) The series link should now work 6) Repeat for the OPAC Signed-off-by: Claire Gravely Signed-off-by: Marcel de Rooy --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 33 +++++++++++++++++++++- .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 32 ++++++++++++++++++++- 2 files changed, 63 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index f8f0ba16c9..2f9f8548bb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -220,7 +220,7 @@ - + /cgi-bin/koha/catalogue/search.pl?q=rcn: @@ -250,6 +250,37 @@ ; + + + + + + + + + a_t + + + + + + + /cgi-bin/koha/catalogue/search.pl?q=se,phr:"" + + + + a_t + + + + + + + + : + + ; + diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl index 4f76b762fa..26a307a9dd 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl @@ -245,7 +245,7 @@ - + /cgi-bin/koha/opac-search.pl?q=rcn: @@ -275,6 +275,36 @@ ; + + + + + + + + a_t + + + + + + + /cgi-bin/koha/opac-search.pl?q=se,phr:"" + + + + a_t + + + + + + + + : + + ; + -- 2.11.0