Why is xslt converter ignoring the content of <link>-tag
Posted
by
Kristoffer Nolgren
on Stack Overflow
See other posts from Stack Overflow
or by Kristoffer Nolgren
Published on 2011-01-03T00:19:31Z
Indexed on
2011/01/03
1:54 UTC
Read the original article
Hit count: 536
xsltprocessor
When I put forexample this in my xslt-stylesheet:
<link><xsl:text>test</xsl:text></link>
Or this:
<link>test</link>
I get the following result:
<link xmlns=""></link>
This however:
<linkb>test</linkb>
Render the following result:
<linkb xmlns="">test</linkb>
The rest of the xslt does not seem to make any difference, i've tried it in several different and empty xslt-stylesheets
This problem appears in backend conversion (php) aswell as frontend-konversion in chrome browser (but not in Firefox)
Example of error: dev.resihop.nu (right above the footer)
© Stack Overflow or respective owner