aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/upgrades/2011061200-1.8b1-sites_need_a_site_guid-6d9dcbf46c0826cc.php
blob: 41ab29998474409c1d8b556bd2eb4e9116485b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
 * Elgg 1.8b1 upgrade 2011061200
 * sites_need_a_site_guid
 *
 * Sites did not have a site guid. This causes problems with getting
 * metadata on site objects since we default to the current site.
 */

global $CONFIG;

$ia = elgg_set_ignore_access(true);
$access_status = access_get_show_hidden_status();
access_show_hidden_entities(true);

$options = array(
	'type' => 'site',
	'site_guid' => 0,
	'limit' => 0,
);
$batch = new ElggBatch('elgg_get_entities', $options);

foreach ($batch as $entity) {
	if (!$entity->site_guid) {
		update_data("UPDATE {$CONFIG->dbprefix}entities SET site_guid=$entity->guid
				WHERE guid=$entity->guid");
	}
}

access_show_hidden_entities($access_status);
elgg_set_ignore_access($ia);