diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-31 16:49:10 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-31 16:49:10 +0000 |
commit | 3d822eae1b96a1a8549e23ed83913ec7281b8c01 (patch) | |
tree | b0a61349014ef942df1a67ce2b7b197eaf601820 /engine | |
parent | 38b75089b9d181411086ef2ab3b6d16b67084104 (diff) | |
download | elgg-3d822eae1b96a1a8549e23ed83913ec7281b8c01.tar.gz elgg-3d822eae1b96a1a8549e23ed83913ec7281b8c01.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Owner guid converted to a uuid
git-svn-id: https://code.elgg.org/elgg/trunk@297 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/annotations.php | 1 | ||||
-rw-r--r-- | engine/lib/metadata.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index cceb8fd05..b0e01ad31 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -109,6 +109,7 @@ { $tmp = new stdClass; $tmp->attributes = $this->attributes; + $tmp->attributes['owner_uuid'] = guid_to_uuid($this->owner_guid); return $tmp; } } diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php index 2c738ebda..82ca71bdd 100644 --- a/engine/lib/metadata.php +++ b/engine/lib/metadata.php @@ -111,6 +111,7 @@ { $tmp = new stdClass; $tmp->attributes = $this->attributes; + $tmp->attributes['owner_uuid'] = guid_to_uuid($this->owner_guid); return $tmp; } } |