From 153ece7ac2fc6c6bc552edf0e5fd69faf93f1438 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov <jcamins@cpbibliography.com> Date: Mon, 5 Aug 2013 20:33:27 -0400 Subject: [PATCH] Bug 9820 follow-up: fix a typo Although the XSLT template was renamed to nameABCQ, one instance of the old name (nameABCDQ) was not corrected. This patch corrects that. To test: Follow test plan on previous patch Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com> --- .../prog/en/xslt/MARC21slim2OPACResults.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl index 462c250..addc7de 100644 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl @@ -458,7 +458,7 @@ <xsl:call-template name="nameABCQ"/>. </xsl:when> <xsl:otherwise> - <xsl:call-template name="nameABCDQ"/>; + <xsl:call-template name="nameABCQ"/>; </xsl:otherwise> </xsl:choose> </xsl:for-each> -- 1.7.9.5