From b6f3d7d0b4a781a500e4fdaf36ef0ed1f09506da Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Thu, 1 Dec 2011 19:53:51 -0500 Subject: [PATCH] Bug 6971: XSLT Intranet Detail displays 245 subfields out of order Content-Type: text/plain; charset="UTF-8" 245 Subfields in the Intranet Detail Display (MARC21slim2intranetDetail.xsl) are being reordered on display. Instead of displaying 245$a 245$h 245$b, the stylesheet was displaying 245$a 245$b 245$h. This patch does not address ISBD punctuation. Signed-off-by: Jared Camins-Esakov Follow-up patch to address the issue in the staff client. --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index b0de609..5c4b338 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -91,16 +91,16 @@ a - + - b + h - + - h + b -- 1.7.2.5