aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-30 03:57:46 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-30 03:57:46 +0000
commit3bda294ee00663362db778fef320f866bc3a28e5 (patch)
tree5275878cc3f24f34fa35359249eab1014b42df60 /engine/lib/plugins.php
parent8173f672f06ad2783d3d0112e7b285d2240f488b (diff)
downloadelgg-3bda294ee00663362db778fef320f866bc3a28e5.tar.gz
elgg-3bda294ee00663362db778fef320f866bc3a28e5.tar.bz2
Fix typo in previous.
git-svn-id: http://code.elgg.org/elgg/trunk@7482 36083f99-b078-4883-b0ff-0f9b5a30f544
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 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;
}