From: Owen Leonard <oleon...@myacpl.org> Fixes the doubled up display of the publisher.
This patch fixes the bug in both the OPAC and staff client --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 10 ++++++++-- .../prog/en/xslt/MARC21slim2OPACDetail.xsl | 8 +++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index 9de39cf..075472e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -222,16 +222,22 @@ <xsl:if test="marc:datafie...@tag=260]"> <span class="results_summary"><span class="label">Publisher: </span> <xsl:for-each select="marc:datafie...@tag=260]"> + <a href="/cgi-bin/koha/catalogue/search.pl?q=pb:{marc:subfie...@code='b']}"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">b</xsl:with-param> + </xsl:call-template> + </a> + <xsl:text> </xsl:text> <xsl:call-template name="chopPunctuation"> <xsl:with-param name="chopString"> <xsl:call-template name="subfieldSelect"> - <xsl:with-param name="codes">abcg</xsl:with-param> + <xsl:with-param name="codes">acg</xsl:with-param> </xsl:call-template> </xsl:with-param> </xsl:call-template> <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose> </xsl:for-each> - </span> + </span> </xsl:if> <!-- Edition Statement: Alternate Graphic Representation (MARC 880) --> diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index 2c6a1a8..e76b8df 100755 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -243,10 +243,16 @@ <xsl:if test="marc:datafie...@tag=260]"> <span class="results_summary"><span class="label">Publisher: </span> <xsl:for-each select="marc:datafie...@tag=260]"> + <a href="/cgi-bin/koha/opac-search.pl?q=pb:{marc:subfie...@code='b']}"> + <xsl:call-template name="subfieldSelect"> + <xsl:with-param name="codes">b</xsl:with-param> + </xsl:call-template> + </a> + <xsl:text> </xsl:text> <xsl:call-template name="chopPunctuation"> <xsl:with-param name="chopString"> <xsl:call-template name="subfieldSelect"> - <xsl:with-param name="codes">abcg</xsl:with-param> + <xsl:with-param name="codes">acg</xsl:with-param> </xsl:call-template> </xsl:with-param> </xsl:call-template> -- 1.7.1 _______________________________________________ Koha-patches mailing list Koha-patches@lists.koha-community.org http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-patches website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/