How come this does not work:
<xsl:with-param name="message">
<xsl:attribute name="select">
<xsl:text>'Alla koder kopplade till den e-post-adressen är nu skickade till dig!'</xsl:text>
</xsl:attribute>
</xsl:with-param>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need:
Whenever you declare a param or variable without
selectattribute and with some content template, the variable or parameter will be of type Result Tree Fragment. Whenever you output an attribute node, it’s an error if you don’t output it before any other node type of some element’s content template. Error recovery mechanism could be to silently output nothing. In XSLT 2.0 the error is rised.Note: I’m ussing
'entity because you have wrapped the text with', otherwise it’s no needed.