From: Ian Walls To: koha-patches@lists.koha-community.org Cc: Jared Camins-Esakov , Ian Walls Subject: [PATCH] Bug 6153: Display imprint subfields in order Date: Sun, 10 Apr 2011 17:32:26 -0400 Message-Id: <1302471146-2188-1-git-send-email-ian.walls@bywatersolutions.com> X-Mailer: git-send-email 1.5.6.5 Content-Type: text/plain; charset="utf-8" From: Jared Camins-Esakov 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 --- .../prog/en/xslt/MARC21slim2OPACDetail.xsl | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) 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 8277872..fd2baa5 --- 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 -- 1.5.6.5