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 756-762 Link Here
756
                </xsl:call-template>
756
                </xsl:call-template>
757
        </xsl:for-each>
757
        </xsl:for-each>
758
        <xsl:for-each select="marc:subfield[@code='b']">
758
        <xsl:for-each select="marc:subfield[@code='b']">
759
                <xsl:value-of select="."/>
759
            <xsl:value-of select="."/>
760
            <xsl:choose>
761
                <xsl:when test="position() != last()">
762
                    <xsl:text> -- </xsl:text>
763
                </xsl:when>
764
            </xsl:choose>
760
        </xsl:for-each>
765
        </xsl:for-each>
761
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
766
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
762
                <xsl:call-template name="subfieldSelect">
767
                <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 898-904 Link Here
898
                </xsl:call-template>
903
                </xsl:call-template>
899
        </xsl:for-each>
904
        </xsl:for-each>
900
        <xsl:for-each select="marc:subfield[@code='b']">
905
        <xsl:for-each select="marc:subfield[@code='b']">
901
                <xsl:value-of select="."/>
906
            <xsl:value-of select="."/>
907
            <xsl:choose>
908
                <xsl:when test="position() != last()">
909
                    <xsl:text> -- </xsl:text>
910
                </xsl:when>
911
            </xsl:choose>
902
        </xsl:for-each>
912
        </xsl:for-each>
903
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
913
        <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
904
                <xsl:call-template name="subfieldSelect">
914
                <xsl:call-template name="subfieldSelect">
905
- 

Return to bug 6496