diff options
author | Cash Costello <cash.costello@gmail.com> | 2013-02-09 08:43:52 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2013-02-09 08:43:52 -0500 |
commit | 359571fec63b62a666413f507775aeb17cd55f37 (patch) | |
tree | 5c1d574f9c3843ad64db5cdc765b7904af9718cc /engine/classes/ElggExtender.php | |
parent | 269d3621531a80b13221a2f6e663efe2ad20ccaa (diff) | |
download | elgg-359571fec63b62a666413f507775aeb17cd55f37.tar.gz elgg-359571fec63b62a666413f507775aeb17cd55f37.tar.bz2 |
Fixes #5052 using name for annotations and using correct class for export
Diffstat (limited to 'engine/classes/ElggExtender.php')
-rw-r--r-- | engine/classes/ElggExtender.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/classes/ElggExtender.php b/engine/classes/ElggExtender.php index d94bad837..25aba354f 100644 --- a/engine/classes/ElggExtender.php +++ b/engine/classes/ElggExtender.php @@ -171,7 +171,7 @@ abstract class ElggExtender extends ElggData { public function export() { $uuid = get_uuid_from_object($this); - $meta = new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes['name'], + $meta = new ODDMetaData($uuid, guid_to_uuid($this->entity_guid), $this->attributes['name'], $this->attributes['value'], $this->attributes['type'], guid_to_uuid($this->owner_guid)); $meta->setAttribute('published', date("r", $this->time_created)); |