diff options
author | chris <chris@teacherscpd.co.uk> | 2005-07-15 00:37:51 +0200 |
---|---|---|
committer | chris <chris@teacherscpd.co.uk> | 2005-07-15 00:37:51 +0200 |
commit | f02a7d06c8a3869d6d6ca0ea1dae81950ac2b37a (patch) | |
tree | 3f3cda0b91c41f9ba51ec645fc66f02824739555 /inc/parser/handler.php | |
parent | d5ce66f6cd5bebeb7ffb39b0ac13b65a5ae3d1fc (diff) | |
download | rpg-f02a7d06c8a3869d6d6ca0ea1dae81950ac2b37a.tar.gz rpg-f02a7d06c8a3869d6d6ca0ea1dae81950ac2b37a.tar.bz2 |
Doku_Handler->plugin() method fix, incorrectly named handler object
darcs-hash:20050714223751-50fdc-ebc6c8ff03e23d2edcd974f51b063f77f9fd4458.gz
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r-- | inc/parser/handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php index 5908f23a2..4ed87c3de 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -68,7 +68,7 @@ class Doku_Handler { $data = array($match); $plugin = null; if(plugin_load('syntax',$pluginname,$plugin)){ - $data = $plugin->handle($match, $state, $pos, $handler); + $data = $plugin->handle($match, $state, $pos, $this); } $this->_addCall('plugin',array($pluginname,$data,$pos),$pos); return TRUE; |