From: Evan Prodromou Date: Fri, 21 Aug 2009 20:58:02 +0000 (-0400) Subject: use array for events X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9f9b011c84464d38d325ba16ea2cae66a29acaf;p=quix0rs-gnu-social.git use array for events --- diff --git a/actions/doc.php b/actions/doc.php index 7387c16207..6f3a87e489 100644 --- a/actions/doc.php +++ b/actions/doc.php @@ -62,7 +62,7 @@ class DocAction extends Action $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)) { @@ -73,7 +73,7 @@ class DocAction extends Action $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();