diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2014-05-26 10:44:20 +0200 |
---|---|---|
committer | Andreas Gohr <gohr@cosmocode.de> | 2014-05-26 10:44:20 +0200 |
commit | 8f2758f6b53b11db38d83ea9ad838ed802a6e635 (patch) | |
tree | a3646d47b9644e2c7a185ad390d23f316dd4522f /inc | |
parent | 73ef0bec2b331cfa39fd34c9f20fc73aa7866a75 (diff) | |
download | rpg-8f2758f6b53b11db38d83ea9ad838ed802a6e635.tar.gz rpg-8f2758f6b53b11db38d83ea9ad838ed802a6e635.tar.bz2 |
made $capture public in metadata renderer
some plugins (eg. the tag plugin) rely on it
Diffstat (limited to 'inc')
-rw-r--r-- | inc/parser/metadata.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/metadata.php b/inc/parser/metadata.php index 9552fedff..25bf3fe3d 100644 --- a/inc/parser/metadata.php +++ b/inc/parser/metadata.php @@ -48,7 +48,7 @@ class Doku_Renderer_metadata extends Doku_Renderer { protected $firstimage = ''; /** @var bool determines if enough data for the abstract was collected, yet */ - protected $capture = true; + public $capture = true; /** @var int number of bytes captured for abstract */ protected $captured = 0; |