diff options
author | Andreas Gohr <andi@splitbrain.org> | 2012-11-04 12:24:43 -0800 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2012-11-04 12:24:43 -0800 |
commit | 1153129404037610467820008829700c46f86e92 (patch) | |
tree | 037ea2efb1652c6c5ef6929eb7e101606ffff5c1 /inc/parserutils.php | |
parent | cff21c5ab0a25e046f23d40760da442ac81ced51 (diff) | |
parent | e8b5a4f91c8a6e230a6cfe13c43dc9ddce31e253 (diff) | |
download | rpg-1153129404037610467820008829700c46f86e92.tar.gz rpg-1153129404037610467820008829700c46f86e92.tar.bz2 |
Merge pull request #121 from splitbrain/strict
fix E_STRICT errors FS#2427
Diffstat (limited to 'inc/parserutils.php')
-rw-r--r-- | inc/parserutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parserutils.php b/inc/parserutils.php index 3dbfc726f..1733fcf09 100644 --- a/inc/parserutils.php +++ b/inc/parserutils.php @@ -579,7 +579,7 @@ function p_get_parsermodes(){ $obj = null; foreach($pluginlist as $p){ /** @var DokuWiki_Syntax_Plugin $obj */ - if(!$obj =& plugin_load('syntax',$p)) continue; //attempt to load plugin into $obj + if(!$obj = plugin_load('syntax',$p)) continue; //attempt to load plugin into $obj $PARSER_MODES[$obj->getType()][] = "plugin_$p"; //register mode type //add to modes $modes[] = array( |