Before you could omit the <?xml version="1.0"> declaration in the formatter when you are including inline xml:
<mm:formatter xslt="test.xsl"> <p>test</p> </mm:formatter> This is not possible anymore and you must write: <mm:formatter xslt="test.xsl"> <?xml version="1.0"> <p>test</p> </mm:formatter> I am not sure if this is a bug and it is not really a problem, because I can simply add it everywhere. Martijn Houtman
