View | Details | Raw Unified | Return to bug 5816
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (-3 / +3 lines)
Lines 490-498 Link Here
490
        </xsl:choose>  
490
        </xsl:choose>  
491
        <xsl:choose>
491
        <xsl:choose>
492
        <xsl:when test="@ind2=0">
492
        <xsl:when test="@ind2=0">
493
            <xsl:for-each select="marc:subfield[@code='t']">
493
            <xsl:call-template name="subfieldSelect">
494
                <xsl:value-of select="marc:subfield[@code=t]"/> <xsl:value-of select="marc:subfield[@code=r]"/>
494
                <xsl:with-param name="codes">tru</xsl:with-param>
495
            </xsl:for-each> 
495
            </xsl:call-template>
496
        </xsl:when>
496
        </xsl:when>
497
        <xsl:otherwise>
497
        <xsl:otherwise>
498
            <xsl:call-template name="subfieldSelect">
498
            <xsl:call-template name="subfieldSelect">
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-4 / +3 lines)
Lines 570-578 Link Here
570
        </xsl:choose>
570
        </xsl:choose>
571
        <xsl:choose>
571
        <xsl:choose>
572
        <xsl:when test="@ind2=0">
572
        <xsl:when test="@ind2=0">
573
            <xsl:for-each select="marc:subfield[@code='t']">
573
            <xsl:call-template name="subfieldSelect">
574
                <xsl:value-of select="marc:subfield[@code=t]"/> <xsl:value-of select="marc:subfield[@code=r]"/>
574
                <xsl:with-param name="codes">tru</xsl:with-param>
575
            </xsl:for-each>
575
            </xsl:call-template>
576
        </xsl:when>
576
        </xsl:when>
577
        <xsl:otherwise>
577
        <xsl:otherwise>
578
            <xsl:call-template name="subfieldSelect">
578
            <xsl:call-template name="subfieldSelect">
579
- 

Return to bug 5816