summaryrefslogtreecommitdiff
path: root/inc/parser/renderer.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-11-04 12:24:43 -0800
committerAndreas Gohr <andi@splitbrain.org>2012-11-04 12:24:43 -0800
commit1153129404037610467820008829700c46f86e92 (patch)
tree037ea2efb1652c6c5ef6929eb7e101606ffff5c1 /inc/parser/renderer.php
parentcff21c5ab0a25e046f23d40760da442ac81ced51 (diff)
parente8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253 (diff)
downloadrpg-1153129404037610467820008829700c46f86e92.tar.gz
rpg-1153129404037610467820008829700c46f86e92.tar.bz2
Merge pull request #121 from splitbrain/strict
fix E_STRICT errors FS#2427
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r--inc/parser/renderer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php
index 0923e6896..2c78f220a 100644
--- a/inc/parser/renderer.php
+++ b/inc/parser/renderer.php
@@ -62,7 +62,7 @@ class Doku_Renderer extends DokuWiki_Plugin {
//handle plugin rendering
function plugin($name,$data){
- $plugin =& plugin_load('syntax',$name);
+ $plugin = plugin_load('syntax',$name);
if($plugin != null){
$plugin->render($this->getFormat(),$this,$data);
}