summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
authorDanny Lin <danny0838@pchome.com.tw>2011-01-26 08:16:45 +0800
committerDanny Lin <danny0838@pchome.com.tw>2011-01-26 08:16:45 +0800
commit9aa0e6c6087e616511fc95d1650ca9b608edece8 (patch)
tree653eec7990582e46e3d3bcc42dd1c201e747c37e /inc/parser
parent14a7c26b85836db9a38608feff653b4b9a8dfa17 (diff)
downloadrpg-9aa0e6c6087e616511fc95d1650ca9b608edece8.tar.gz
rpg-9aa0e6c6087e616511fc95d1650ca9b608edece8.tar.bz2
Like others, there's no need to define $sectionedits as private, and it prevents plugins that ought to handle headers from working and require a lot of ugly workarounds (such as header2).
If there's a concern, "protected" may be another choice.
Diffstat (limited to 'inc/parser')
-rw-r--r--inc/parser/xhtml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 9405d9420..b502b4f6b 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -29,7 +29,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
var $doc = ''; // will contain the whole document
var $toc = array(); // will contain the Table of Contents
- private $sectionedits = array(); // A stack of section edit data
+ var $sectionedits = array(); // A stack of section edit data
var $headers = array();
var $footnotes = array();