blob: 4fc59ac4133de49a84b7eb9e2263c21d5baf0f3a (
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
|
<?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,
);
$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);
|