You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ti...@apache.org on 2004/11/10 22:19:51 UTC

svn commit: rev 57374 - cocoon/branches/BRANCH_2_1_X/src/blocks/forms/samples/resources

Author: tim
Date: Wed Nov 10 13:19:51 2004
New Revision: 57374

Modified:
   cocoon/branches/BRANCH_2_1_X/src/blocks/forms/samples/resources/forms-field-styling.xsl
Log:
For output-styled fields with selection lists, suppress output
of the <fi:label> element around the selected element's label.


Modified: cocoon/branches/BRANCH_2_1_X/src/blocks/forms/samples/resources/forms-field-styling.xsl
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/src/blocks/forms/samples/resources/forms-field-styling.xsl	(original)
+++ cocoon/branches/BRANCH_2_1_X/src/blocks/forms/samples/resources/forms-field-styling.xsl	Wed Nov 10 13:19:51 2004
@@ -222,7 +222,7 @@
     <xsl:variable name="selected" select="fi:selection-list/fi:item[@value = $value]"/>
     <xsl:choose>
       <xsl:when test="$selected/fi:label">
-        <xsl:apply-templates select="$selected/fi:label"/>
+        <xsl:copy-of select="$selected/fi:label/node()"/>
       </xsl:when>
       <xsl:otherwise>
         <xsl:value-of select="$value"/>