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:
committed by
Gina Peter Banyard
parent
7e4a232578
commit
85aeccaf0d
@@ -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()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user