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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21toUNIMARC.xsl (-4 / +6 lines)
Lines 17-23 with Koha; if not, write to the Free Software Foundation, Inc., Link Here
17
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
17
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
18
	<xsl:template match="/">
18
	<xsl:template match="/">
19
		<collection>
19
		<collection>
20
            <xsl:for-each select="marc:record">
20
		<xsl:apply-templates/>
21
		</collection>
22
	</xsl:template>
23
	<xsl:template match="marc:record">
24
<!--            <xsl:for-each select="marc:record"> -->
21
			<record
25
			<record
22
				xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26
				xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
				xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
27
				xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
Lines 1181-1187 with Koha; if not, write to the Free Software Foundation, Inc., Link Here
1181
					</datafield>
1185
					</datafield>
1182
				</xsl:for-each>
1186
				</xsl:for-each>
1183
			</record>
1187
			</record>
1184
		</xsl:for-each>
1188
<!--		</xsl:for-each> -->
1185
		</collection>
1186
	</xsl:template>
1189
	</xsl:template>
1187
</xsl:stylesheet>
1190
</xsl:stylesheet>
1188
- 

Return to bug 6536