diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-01-25 11:09:54 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-01-25 11:09:54 +0100 |
commit | 33e75ca2f63b10ae1c7c7e9891ae857ce80d1811 (patch) | |
tree | 481e679c75e8eb5a58bd3f71a48f26ec87d86db4 /inc/parserutils.php | |
parent | 3295f40a380553bb3f7f3018cee2e4462e0be417 (diff) | |
parent | a24fc53e2623640cf5e2d00de741c1b67c9bb294 (diff) | |
download | rpg-33e75ca2f63b10ae1c7c7e9891ae857ce80d1811.tar.gz rpg-33e75ca2f63b10ae1c7c7e9891ae857ce80d1811.tar.bz2 |
Merge branch 'confmanager' into future
* confmanager:
added failing test for array type
started to add some unit tests to config manager
Revert "config manager: let PHP parse the config file"
added 'array' type for config manager
config manager: let PHP parse the config file
config manager: removed dead/commented code
added PCRE UTF-8 checks to do=check FS#2636
avoid multiple paralell update checks
fix regression bug in HTTPClient FS#2621
changed PAGEUTILS_ID_HIDEPAGE to has BEFORE/AFTER
added event PAGEUTILS_ID_HIDEPAGE
added test for isHiddenPage()
add index file similar to fileicons to show active smileys
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( |