aboutsummaryrefslogtreecommitdiff
path: root/install/ElggInstaller.php
diff options
context:
space:
mode:
Diffstat (limited to 'install/ElggInstaller.php')
-rw-r--r--install/ElggInstaller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ElggInstaller.php b/install/ElggInstaller.php
index 1bf4808ef..62d3f6567 100644
--- a/install/ElggInstaller.php
+++ b/install/ElggInstaller.php
@@ -1344,8 +1344,8 @@ class ElggInstaller {
elgg_generate_plugin_entities();
$plugins = elgg_get_plugins('any');
foreach ($plugins as $plugin) {
- if ($plugin->manifest) {
- if ($plugin->manifest->getActivateOnInstall()) {
+ if ($plugin->getManifest()) {
+ if ($plugin->getManifest()->getActivateOnInstall()) {
$plugin->activate();
}
}