guid; update_data("UPDATE {$dbprefix}entities SET subtype = $subtype_id WHERE guid = $page_guid"); error_log("called"); return true; } $previous_access = elgg_set_ignore_access(true); $dbprefix = elgg_get_config('dbprefix'); $name_metastring_id = get_metastring_id('parent_guid'); if (!$name_metastring_id) { return; } // Looking for pages without metadata $options = array( 'type' => 'object', 'subtype' => 'page', 'wheres' => "NOT EXISTS ( SELECT 1 FROM {$dbprefix}metadata md WHERE md.entity_guid = e.guid AND md.name_id = $name_metastring_id)" ); $batch = new ElggBatch('elgg_get_entities_from_metadata', $options, 'pages_2012061800', 50, false); elgg_set_ignore_access($previous_access); if ($batch->callbackResult) { error_log("Elgg Pages upgrade (2012061800) succeeded"); }