From 694f0fbeaf1f6896fe476977786e561c78946986 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Sun, 10 Apr 2011 17:32:26 -0400 Subject: [PATCH] Bug 6153: Display imprint subfields in order Prior to this patch, the imprint (field 260) was displayed out-of-order on the MARC21 XSLT record detail page. For example, the following data: =260 \\$aNew York :$bHarper,$c2003$g(2005 printing) Displayed as: Harper, New York : 2003 (2005 printing) Instead of: New York : Harper, 2003 (2005 printing) Even more problematically, the following data: =260 \\$a[S.l. :$bs.n.],$c1860. Displayed as: s.n.], [S.l. : 1860 Instead of: [S.l. : s.n.], 1860. This patch changes the MARC21 OPAC Details display to display the imprint subfields in the proper order (as the Results display already does). Signed-off-by: Ian Walls Signed-off-by: Chris Cormack --- koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) mode change 100644 => 100755 koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl old mode 100644 new mode 100755 index 369b74b147..1e0855f9aa --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -343,6 +343,11 @@ Publisher: + + + a +   + @@ -354,7 +359,7 @@ - acg + cg -- 2.39.2