aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/upgrades/2010123101.php
blob: f4befd1a86859c0e49172403e3a90f0c2c371c48 (plain)
1
2
3
4
5
6
7
8
9
<?php
/**
 * Set default access for older sites
 */

$access = elgg_get_config('default_access');
if ($access == false) {
	elgg_save_config('default_access', ACCESS_LOGGED_IN);
}