summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
Diffstat (limited to 'inc/parser')
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 1520d6624..da5c70459 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -289,10 +289,10 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
function php($text) {
global $conf;
if($conf['phpok']){
- ob_start;
+ ob_start();
eval($text);
$this->doc .= ob_get_contents();
- ob_end_clean;
+ ob_end_clean();
}else{
$this->file($text);
}