diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-11 18:15:23 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-11 18:15:23 +0000 |
commit | 48af92966e9030431eccd0a30d277e88092e4876 (patch) | |
tree | 544b463fccc63a7b22a6d62303a3273b681962ae /engine/lib/export.php | |
parent | 23852faf24d7e0f88c69a5e8599264b2e56586b0 (diff) | |
download | elgg-48af92966e9030431eccd0a30d277e88092e4876.tar.gz elgg-48af92966e9030431eccd0a30d277e88092e4876.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Added owner uuid to type
git-svn-id: https://code.elgg.org/elgg/trunk@438 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/export.php')
-rw-r--r-- | engine/lib/export.php | 3 |
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); } |