diff options
-rw-r--r-- | engine/lib/opendd.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/engine/lib/opendd.php b/engine/lib/opendd.php index 6d196f8e9..2c87f3265 100644 --- a/engine/lib/opendd.php +++ b/engine/lib/opendd.php @@ -6,7 +6,7 @@ * @subpackage Core * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 * @author Marcus Povey - * @version 0.1 + * @version 0.2 * @copyright Curverider Ltd 2008 * @link http://elgg.org/ */ @@ -147,7 +147,16 @@ } public function setBody($value) { $this->body = $value; } public function getBody() { return $this->body; } - + + /** + * Set the published time. + * + * @param int $time Unix timestamp + */ + public function setPublished($time) + { + $this->attributes['published'] = date("r", $time); + } /** * For serialisation, implement to return a string name of the tag eg "header" or "metadata". * @return string |