Skip to content

Commit

Permalink
Pass missing parameter to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
haszi authored and Girgias committed Jan 14, 2025
1 parent 7e4a232 commit 85aecca
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion phpdotnet/phd/Package/IDE/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ function writeChunk() {
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()));
}
Expand Down

0 comments on commit 85aecca

Please sign in to comment.