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/plugin.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/plugin.php')
-rw-r--r-- | inc/plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/plugin.php b/inc/plugin.php index d2fe3818d..b0518346d 100644 --- a/inc/plugin.php +++ b/inc/plugin.php @@ -191,7 +191,7 @@ class DokuWiki_Plugin { */ function loadHelper($name, $msg){ if (!plugin_isdisabled($name)){ - $obj =& plugin_load('helper',$name); + $obj = plugin_load('helper',$name); }else{ $obj = null; } |