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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (-1 / +6 lines)
Lines 791-797 Link Here
791
                </xsl:call-template>
791
                </xsl:call-template>
792
        </xsl:for-each>
792
        </xsl:for-each>
793
        <xsl:for-each select="marc:subfield[@code='b']">
793
        <xsl:for-each select="marc:subfield[@code='b']">
794
                <xsl:value-of select="."/>
794
            <xsl:value-of select="."/>
795
            <xsl:choose>
796
                <xsl:when test="position() != last()">
797
                    <xsl:text> -- </xsl:text>
798
                </xsl:when>
799
            </xsl:choose>
795
        </xsl:for-each>
800
        </xsl:for-each>
796
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
801
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
797
                <xsl:call-template name="subfieldSelect">
802
                <xsl:call-template name="subfieldSelect">
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-3 / +12 lines)
Lines 142-151 Link Here
142
        </xsl:choose>
142
        </xsl:choose>
143
        <xsl:call-template name="nameABCDQ"/></a>
143
        <xsl:call-template name="nameABCDQ"/></a>
144
        <xsl:choose>
144
        <xsl:choose>
145
        <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
145
        <xsl:when test="position()!=last()"><xsl:text>; </xsl:text></xsl:when></xsl:choose>
146
        </xsl:for-each>
146
        </xsl:for-each>
147
147
148
        <xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
148
        <xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
149
            <xsl:choose>
150
                <xsl:when test="position()=1">
151
                    <xsl:text>; </xsl:text>
152
                </xsl:when>
153
            </xsl:choose>
149
        <a>
154
        <a>
150
        <xsl:choose>
155
        <xsl:choose>
151
            <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
156
            <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
Lines 921-927 Link Here
921
                </xsl:call-template>
926
                </xsl:call-template>
922
        </xsl:for-each>
927
        </xsl:for-each>
923
        <xsl:for-each select="marc:subfield[@code='b']">
928
        <xsl:for-each select="marc:subfield[@code='b']">
924
                <xsl:value-of select="."/>
929
            <xsl:value-of select="."/>
930
            <xsl:choose>
931
                <xsl:when test="position() != last()">
932
                    <xsl:text> -- </xsl:text>
933
                </xsl:when>
934
            </xsl:choose>
925
        </xsl:for-each>
935
        </xsl:for-each>
926
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
936
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
927
                <xsl:call-template name="subfieldSelect">
937
                <xsl:call-template name="subfieldSelect">
928
- 

Return to bug 6496