Skip to content

Commit 85aecca

Browse files
hasziGirgias
authored andcommitted
Pass missing parameter to constructor
1 parent 7e4a232 commit 85aecca

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

phpdotnet/phd/Package/IDE/Base.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ function writeChunk() {
121121
public function renderHTML() {
122122
static $format = null;
123123
if ($format == null) {
124-
$format = new Package_Generic_ChunkedXHTML($this->config);
124+
$format = new Package_Generic_ChunkedXHTML(
125+
$this->config,
126+
$this->outputHandler
127+
);
125128
}
126129
return $format->parse(trim(ReaderKeeper::getReader()->readInnerXML()));
127130
}

0 commit comments

Comments
 (0)