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.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/engine/lib/export.php b/engine/lib/export.php
index 7c99b6f04..e9129e3a3 100644
--- a/engine/lib/export.php
+++ b/engine/lib/export.php
@@ -187,7 +187,7 @@
*/
class ODDMetaData extends ODD
{
- function __construct($uuid, $entity_uuid, $name, $value, $type = "")
+ function __construct($uuid, $entity_uuid, $name, $value, $type = "", $owner_uuid = "")
{
parent::__construct();
@@ -195,6 +195,7 @@
$this->setAttribute('entity_uuid', $entity_uuid);
$this->setAttribute('name', $name);
$this->setAttribute('type', $type);
+ $this->setAttribute('owner_uuid', $owner_uuid);
$this->setBody($value);
}