Martijn Houtman wrote
> Sorry, this error was my mistake also. It happens also in my code and only
> in a search list. It has nothing to do with moving the template, because
> baselist.xsl is included in searchlist.xsl. I will check out what to do
> about it.
>
The solution is a change of searchlist.xsl
<xsl:template match="field">
<td>
<!-- replaced -->
<!-- <xsl:value-of select="." disable-output-escaping="yes" /> -->
<xsl:call-template name="writeCurrentField" />
</td>
</xsl:template>
Martijn Houtman