diff options
Diffstat (limited to 'inc/pluginutils.php')
-rw-r--r-- | inc/pluginutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/pluginutils.php b/inc/pluginutils.php index 3be57f2d7..49dd44816 100644 --- a/inc/pluginutils.php +++ b/inc/pluginutils.php @@ -48,7 +48,7 @@ function plugin_load($type,$name,&$ref){ } //try to load the wanted plugin file - if(!@include_once(DOKU_PLUGIN.$name.'/'.$type.'.php')){ + if(!include_once(DOKU_PLUGIN.$name.'/'.$type.'.php')){ return false; } |