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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (-1 / +8 lines)
Lines 207-213 Link Here
207
                        </xsl:call-template>
207
                        </xsl:call-template>
208
            </a>
208
            </a>
209
            <xsl:call-template name="part"/>
209
            <xsl:call-template name="part"/>
210
            <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> ; </xsl:text></xsl:otherwise></xsl:choose>
210
            <xsl:choose>
211
                <xsl:when test="position()=last()">
212
                    <xsl:if test="../marc:datafield[@tag=490][@ind1!=1]">
213
                        <xsl:text>; </xsl:text>
214
                    </xsl:if>
215
                </xsl:when>
216
                <xsl:otherwise><xsl:text> ; </xsl:text></xsl:otherwise>
217
            </xsl:choose>
211
        </xsl:for-each>
218
        </xsl:for-each>
212
219
213
        <!-- 490 Series not traced, Ind1 = 0 -->
220
        <!-- 490 Series not traced, Ind1 = 0 -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-2 / +8 lines)
Lines 226-232 Link Here
226
                        </xsl:call-template>
226
                        </xsl:call-template>
227
            </a>
227
            </a>
228
            <xsl:call-template name="part"/>
228
            <xsl:call-template name="part"/>
229
            <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> ; </xsl:text></xsl:otherwise></xsl:choose>
229
            <xsl:choose>
230
                <xsl:when test="position()=last()">
231
                    <xsl:if test="../marc:datafield[@tag=490][@ind1!=1]">
232
                        <xsl:text>; </xsl:text>
233
                    </xsl:if>
234
                </xsl:when>
235
                <xsl:otherwise><xsl:text> ; </xsl:text></xsl:otherwise>
236
            </xsl:choose>
230
        </xsl:for-each>
237
        </xsl:for-each>
231
238
232
        <!-- 490 Series not traced, Ind1 = 0 -->
239
        <!-- 490 Series not traced, Ind1 = 0 -->
233
- 

Return to bug 22884