? d6-xmlcontent-r1.10-transformation.patch Index: xmlcontent.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlcontent/xmlcontent.module,v retrieving revision 1.10 diff -u -p -r1.10 xmlcontent.module --- xmlcontent.module 29 Mar 2009 02:20:25 -0000 1.10 +++ xmlcontent.module 11 Sep 2009 16:14:17 -0000 @@ -241,11 +241,9 @@ function _xmlcontent_transform($xml, $pa $proc->setParameter(XMLCONTENT_DFLT_NS, $key, $value); } - // Transform - $newdom = $proc->transformToDoc($dom); - - // Return the output as XML text (in fact subset of XHTML, depending on the XSLT script) - return $newdom->saveXML(); + // Transform DOM and returns the output using the xsl:output/@method specified in the XSLT script + $out = $proc->transformToXML($dom); + return $out; }