diff options
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/handler.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index a5a79c2ae..702bcce55 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -39,9 +39,8 @@ class Doku_Handler { $B = & new Doku_Handler_Block(); $this->calls = $B->process($this->calls); } - - $evt = new event('HANDLER_FINALISED',$this); - $evt->advise(); + + trigger_event('PARSER_HANDLER_DONE',$this); array_unshift($this->calls,array('document_start',array(),0)); array_unshift($this->calls,array('meta',array($this->meta),0)); |