aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r--engine/lib/plugins.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php
index a38f159cc..51d004b7a 100644
--- a/engine/lib/plugins.php
+++ b/engine/lib/plugins.php
@@ -225,7 +225,7 @@
foreach($plugins as $mod) {
if (is_plugin_enabled($mod)) {
if (file_exists($CONFIG->pluginspath . $mod)) {
- if (!@include($CONFIG->pluginspath . $mod . "/start.php"))
+ if (!include($CONFIG->pluginspath . $mod . "/start.php"))
throw new PluginException(sprintf(elgg_echo('PluginException:MisconfiguredPlugin'), $mod));
if (is_dir($CONFIG->pluginspath . $mod . "/views")) {
if ($handle = opendir($CONFIG->pluginspath . $mod . "/views")) {