1
0
mirror of https://github.com/php/phd.git synced 2026-03-23 22:52:05 +01:00

Pass missing parameter to constructor

This commit is contained in:
haszi
2025-01-12 19:01:08 +01:00
committed by Gina Peter Banyard
parent 7e4a232578
commit 85aeccaf0d

View File

@@ -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()));
}