From c9f9b011c84464d38d325ba16ea2cae66a29acaf Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 21 Aug 2009 16:58:02 -0400 Subject: use array for events --- actions/doc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/doc.php') diff --git a/actions/doc.php b/actions/doc.php index 7387c1620..6f3a87e48 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(); -- cgit v1.2.3-54-g00ecf