diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2019-10-31 15:35:12 +0100 |
---|---|---|
committer | Andreas Gohr <gohr@cosmocode.de> | 2019-10-31 15:35:12 +0100 |
commit | 767b83f91fd5f634b526962058e996d6eeba726c (patch) | |
tree | 3ecee10cca63bf160bb0037a8d77b24ec910b412 | |
parent | 31c0895a7b91fad19cbf15cc5bff90d63ce704ef (diff) | |
download | dokuwiki-767b83f91fd5f634b526962058e996d6eeba726c.tar.gz dokuwiki-767b83f91fd5f634b526962058e996d6eeba726c.zip |
make addPluginCall accessible again
Some plugins are using this method.
-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 9fb71b4cd..e5f7c4ed5 100644 --- a/inc/parser/handler.php +++ b/inc/parser/handler.php @@ -64,7 +64,7 @@ class Doku_Handler { * @param int $pos byte position in the original source file * @param string $match matched syntax */ - protected function addPluginCall($plugin, $args, $state, $pos, $match) { + public function addPluginCall($plugin, $args, $state, $pos, $match) { $call = array('plugin',array($plugin, $args, $state, $match), $pos); $this->callWriter->writeCall($call); } |