diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-01 10:57:17 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-01 10:57:17 +0000 |
commit | d84f0ab941b3efa71184f91ccbff064035830ac3 (patch) | |
tree | 6be1f50789a2fc92babe96506c24e36280ab292a /engine | |
parent | 550f2e36eac4bbb86c4a4b1d4ab32ba7b67c56cf (diff) | |
download | elgg-d84f0ab941b3efa71184f91ccbff064035830ac3.tar.gz elgg-d84f0ab941b3efa71184f91ccbff064035830ac3.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Entities owner_guid exported as owner_uuid
git-svn-id: https://code.elgg.org/elgg/trunk@300 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 ea74898c3..e96a781f9 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -307,6 +307,7 @@ $tmp = new stdClass; $tmp->attributes = $this->attributes; $tmp->attributes['uuid'] = guid_to_uuid($this->getGUID()); + $tmp->attributes['owner_uuid'] = guid_to_uuid($this->owner_guid); return $tmp; } } |