The problem can be solved by changing wizard.xsl as follows:
.......
<xsl:template name="ftype-text">
<xsl:choose>
<xsl:when test="@maywrite!='false'">
<span>
<textarea name="[EMAIL PROTECTED]" id="[EMAIL PROTECTED]" class="input"
wrap="virtual">
<xsl:if test="not(@cols)">
<xsl:attribute name="cols"><xsl:value-of
select="$default-cols" /></xsl:attribute>
</xsl:if>
<xsl:if test="not(@rows)">
<xsl:attribute name="rows"><xsl:value-of
select="$default-rows" /></xsl:attribute>
</xsl:if>
<xsl:apply-templates select="@*"/>
<!-- replaced to remove extra carriage returns
<xsl:value-of select="value" />
-->
<xsl:value-of select="translate(value,' ','')" />
</textarea>
........
This works for me, but it might introduce other problems. Please test it.
Martijn Houtman