Bug 18755: Allow empty passwords in Patron Info to return OK
[koha.git] / t / db_dependent / XSLT_Handler / test03.xsl
blob6ade5517c756f49c73c9c440022c03c407c7d974
1 <xsl:stylesheet version="1.0"
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:marc="http://www.loc.gov/MARC21/slim"
5 <xsl:output method="xml" encoding="UTF-8" version="1.0" indent="yes"/>
7 <xsl:template match="/">
8 <xsl:apply-templates/>
9 </xsl:template>
11 <xsl:template match="node()">
12 <xsl:copy select=".">
13 <xsl:copy-of select="@*"/>
14 <xsl:apply-templates/>
15 </xsl:copy>
16 </xsl:template>
17 </xsl:stylesheet>