diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-31 15:51:47 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-31 15:51:47 +0000 |
commit | 5f0a1c2479ff4add2498f90fd3d9423de48da7bb (patch) | |
tree | 33df4847e3d0c5eb4369d6896d05ef3290e62ffc /engine | |
parent | aecf239a1aac95800bc7a34434bf4d96f528269d (diff) | |
download | elgg-5f0a1c2479ff4add2498f90fd3d9423de48da7bb.tar.gz elgg-5f0a1c2479ff4add2498f90fd3d9423de48da7bb.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Export of entities now includes uuid
git-svn-id: https://code.elgg.org/elgg/trunk@295 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/entities.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 017e86a74..ea74898c3 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -306,6 +306,7 @@ { $tmp = new stdClass; $tmp->attributes = $this->attributes; + $tmp->attributes['uuid'] = guid_to_uuid($this->getGUID()); return $tmp; } } |