From 85aeccaf0d08197a81925dd0d242bed03da49a5e Mon Sep 17 00:00:00 2001 From: haszi Date: Sun, 12 Jan 2025 19:01:08 +0100 Subject: [PATCH] Pass missing parameter to constructor --- phpdotnet/phd/Package/IDE/Base.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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())); }