diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-24 09:55:13 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-24 09:55:13 +0000 |
commit | b23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e (patch) | |
tree | 960d43bafb48d6292964e0920549b8d32cf51a56 /engine/lib/metadata.php | |
parent | 33962198a853f02497f72266ebf3fa692abd6976 (diff) | |
download | elgg-b23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e.tar.gz elgg-b23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Generated now published
* Metadata and annotations use time from db
* Attributes use time from entity
git-svn-id: https://code.elgg.org/elgg/trunk@514 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/metadata.php')
-rw-r--r-- | engine/lib/metadata.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php index 06c187a70..d05688ea3 100644 --- a/engine/lib/metadata.php +++ b/engine/lib/metadata.php @@ -105,7 +105,10 @@ $type = "metadata"; $uuid = guid_to_uuid($this->entity_guid). $type . "/{$this->id}/"; - return new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid)); + $meta = new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid)); + $meta->setAttribute('published', date("r", $this->time_created)); + + return $meta; } }
|