aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/export.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r--engine/lib/export.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php
index e3acace5f..c541b583b 100644
--- a/engine/lib/export.php
+++ b/engine/lib/export.php
@@ -121,7 +121,7 @@ function is_uuid_this_domain($uuid) {
function get_entity_from_uuid($uuid) {
$uuid = sanitise_string($uuid);
- $entities = get_entities_from_metadata("import_uuid", $uuid);
+ $entities = elgg_get_entities_from_metadata(array('metadata_name' => 'import_uuid', 'metadata_value' => $uuid));
if ($entities) {
return $entities[0];
@@ -253,4 +253,4 @@ function export_init() {
}
// Register a startup event
-register_elgg_event_handler('init', 'system', 'export_init', 100); \ No newline at end of file
+register_elgg_event_handler('init', 'system', 'export_init', 100);