diff options
Diffstat (limited to 'inc/parser')
-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; |