From 82d616353e4c3680d88f083eb6f88fe68de92904 Mon Sep 17 00:00:00 2001 From: "pierre.spring" Date: Wed, 22 Oct 2008 16:02:09 +0200 Subject: parser: put match on the call stack darcs-hash:20081022140209-c07ef-c4d27f3c581ee6ee7cedb886f9e5b2675503b817.gz --- lib/plugins/syntax.php | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/syntax.php b/lib/plugins/syntax.php index c3d659456..7ded173cd 100644 --- a/lib/plugins/syntax.php +++ b/lib/plugins/syntax.php @@ -22,8 +22,7 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode { var $lang = array(); // array to hold language dependent strings, best accessed via ->getLang() var $configloaded = false; // set to true by loadConfig() after loading plugin configuration variables var $conf = array(); // array to hold plugin settings, best accessed via ->getConf() - var $match = null; // string containing the match of a syntax plugin, accessed via - // it's setters and getters setMatch() and getMatch() + /** * General Info * @@ -267,29 +266,5 @@ class DokuWiki_Syntax_Plugin extends Doku_Parser_Mode { return $conf; } - /** - * setMatch is the setter of the match string in a syntax plugin - * - * @author Pierre Spring - * @param string $match - * @access public - * @return void - */ - function setMatch($match) - { - $this->match = (string) $match; - } - /** - * getMatch is the getter of the match string in a syntax plugin - * - * @author Pierre Spring - * @access public - * @return string - */ - function getMatch() - { - return $this->match; - } - } //Setup VIM: ex: et ts=4 enc=utf-8 : -- cgit v1.2.3