From d71e696567ac5fec055c7d2b923d1015956c4960 Mon Sep 17 00:00:00 2001 From: Albert Oller Date: Fri, 18 Nov 2011 13:49:07 -0500 Subject: [PATCH] Bug 6971: XSLT Opac Detail displays 245 subfields out of order. 245 Subfields in the OPAC Detail Display (MARC21slim2OPACDetail.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 Clarified commit message. --- .../opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index e16db73923..2d888806fa 100755 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -95,16 +95,16 @@ a - + - b + h - + - h + b -- 2.39.2