diff options
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r-- | inc/parser/xhtml.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 5e322d839..70e595f82 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -305,6 +305,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { * @author Andreas Gohr <andi@splitbrain.org> */ function php($text) { + global $conf; + if($conf['phpok']){ ob_start(); eval($text); @@ -325,6 +327,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { * @author Andreas Gohr <andi@splitbrain.org> */ function html($text) { + global $conf; + if($conf['htmlok']){ $this->doc .= $text; } else { |