aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/upgrades/2010050701.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/upgrades/2010050701.php')
-rw-r--r--engine/lib/upgrades/2010050701.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/engine/lib/upgrades/2010050701.php b/engine/lib/upgrades/2010050701.php
deleted file mode 100644
index b92d6a668..000000000
--- a/engine/lib/upgrades/2010050701.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * Removes the Walled Garden plugin in favor of new system settings
- */
-
-$access = elgg_set_ignore_access(TRUE);
-
-if (elgg_is_active_plugin('walledgarden')) {
- disable_plugin('walledgarden');
- set_config('allow_registration', FALSE);
- set_config('walled_garden', TRUE);
-} else {
- set_config('allow_registration', TRUE);
- set_config('walled_garden', FALSE);
-}
-
-// this was for people who manually set the config option
-$disable_registration = elgg_get_config('disable_registration');
-if ($disable_registration !== null) {
- $allow_registration = !$disable_registration;
- elgg_save_config('allow_registration', $allow_registration);
-}
-
-elgg_set_ignore_access($access);