diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-02-16 20:18:30 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-02-16 20:18:30 +0000 |
commit | 33416b823f72c23623d441e6341f564c41cd8f8f (patch) | |
tree | eb9da0840d8424c245c39b48ba566ba73e247d26 /inc/events.php | |
parent | b9bd3ecff7347bc96d59368f3f4ba4a271ecf0bd (diff) | |
download | rpg-33416b823f72c23623d441e6341f564c41cd8f8f.tar.gz rpg-33416b823f72c23623d441e6341f564c41cd8f8f.tar.bz2 |
remove reference operator from object, no longer required
Diffstat (limited to 'inc/events.php')
-rw-r--r-- | inc/events.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/events.php b/inc/events.php index e9ffa5a92..91b0d181a 100644 --- a/inc/events.php +++ b/inc/events.php @@ -158,7 +158,7 @@ class Doku_Event_Handler { $this->_hooks[$event.'_'.$advise][] = array($obj, $method, $param, (int)$seq); } - function process_event(&$event,$advise='') { + function process_event($event,$advise='') { $evt_name = $event->name . ($advise ? '_'.$advise : '_BEFORE'); |