$this->title = $this->trimmed('title');
$this->output = null;
- if (Event::handle('StartLoadDoc', &$this->title, &$this->output)) {
+ if (Event::handle('StartLoadDoc', array(&$this->title, &$this->output))) {
$this->filename = INSTALLDIR.'/doc-src/'.$this->title;
if (!file_exists($this->filename)) {
$c = file_get_contents($this->filename);
$this->output = common_markup_to_html($c);
- Event::handle('EndLoadDoc', $this->title, &$this->output);
+ Event::handle('EndLoadDoc', array($this->title, &$this->output));
}
$this->showPage();