diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/plugincontroller.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/plugincontroller.class.php b/inc/plugincontroller.class.php index 924a475e0..f12c0826a 100644 --- a/inc/plugincontroller.class.php +++ b/inc/plugincontroller.class.php @@ -79,7 +79,7 @@ class Doku_Plugin_Controller { $dir = $this->get_directory($plugin); $file = $component ? "$type/$component.php" : "$type.php"; - if (!include_once(DOKU_PLUGIN."$dir/$file")) { + if (!@include_once(DOKU_PLUGIN."$dir/$file")) { return null; } |