diff options
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r-- | engine/lib/plugins.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 163a9fa82..258a48fb5 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -276,7 +276,7 @@ function load_plugin_manifest($plugin) { $xml_file = get_config('pluginspath') . "$plugin/manifest.xml"; try { - $manifest = ElggPluginManifest($xml_file); + $manifest = new ElggPluginManifest($xml_file); } catch(Exception $e) { return false; } |