aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/upgrades
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/upgrades')
-rw-r--r--engine/lib/upgrades/2010050701.php2
-rw-r--r--engine/lib/upgrades/2010100500.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/upgrades/2010050701.php b/engine/lib/upgrades/2010050701.php
index 4a02a77c6..554e10d8a 100644
--- a/engine/lib/upgrades/2010050701.php
+++ b/engine/lib/upgrades/2010050701.php
@@ -5,7 +5,7 @@
$access = elgg_set_ignore_access(TRUE);
-if (is_plugin_enabled('walledgarden')) {
+if (elgg_is_active_plugin('walledgarden')) {
disable_plugin('walledgarden');
set_config('allow_registration', FALSE);
set_config('walled_garden', TRUE);
diff --git a/engine/lib/upgrades/2010100500.php b/engine/lib/upgrades/2010100500.php
index 1f9587196..74d1be820 100644
--- a/engine/lib/upgrades/2010100500.php
+++ b/engine/lib/upgrades/2010100500.php
@@ -3,7 +3,7 @@
* Upgrades the oAuth Library plugin name
*/
-if (is_plugin_enabled('oauth')) {
+if (elgg_is_active_plugin('oauth')) {
disable_plugin('oauth');
enable_plugin('oauth_lib');
}