From 5234d2f2adedc73f1891993a4480152e920f47e8 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 20 Oct 2022 05:26:48 +0000 Subject: [PATCH] Bug 23032: Show MARC21 880 for 264 on detail pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch adds the 880 display for 264 (in addition to 260) on the detail pages. To test: 0) Apply patch 1) Create/edit a record 2) Create 264 $6 880-01 $a Xianggang : $b Tushuguan, $c 2022 3) Create 880 $6 264-01 $a 香港 : $b 图书馆, $c 2022 4) View record and see "Publication details" appear with the 880 script on the detail page on both the staff interface and OPAC --- .../intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl | 2 +- koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 2 +- 2 files changed, 2 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 acaf38a650..4b53b5605d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -273,7 +273,7 @@ - 260 + 260,264 abcg results_summary publisher Publication details: diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl index 31781fd07b..2a7179e20e 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl @@ -315,7 +315,7 @@ - 260 + 260,264 abcg results_summary publisher Publication details: -- 2.25.1