diff --git a/phpdotnet/phd/Package/IDE/Base.php b/phpdotnet/phd/Package/IDE/Base.php index d6d8fda..f199204 100644 --- a/phpdotnet/phd/Package/IDE/Base.php +++ b/phpdotnet/phd/Package/IDE/Base.php @@ -121,7 +121,10 @@ abstract class Package_IDE_Base extends Format { public function renderHTML() { static $format = null; if ($format == null) { - $format = new Package_Generic_ChunkedXHTML($this->config); + $format = new Package_Generic_ChunkedXHTML( + $this->config, + $this->outputHandler + ); } return $format->parse(trim(ReaderKeeper::getReader()->readInnerXML())); }