diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-25 09:40:03 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-25 09:40:03 +0000 |
commit | b6ec52db578e418dfeaa7d9f753030854fb98e25 (patch) | |
tree | 31cbc79234f990702f28685259e31956db21a017 /engine/lib/entities.php | |
parent | 8cbff875f825e709172f63f17636b9f6035a7db5 (diff) | |
download | elgg-b6ec52db578e418dfeaa7d9f753030854fb98e25.tar.gz elgg-b6ec52db578e418dfeaa7d9f753030854fb98e25.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Removed all namespacing code
git-svn-id: https://code.elgg.org/elgg/trunk@523 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 8e81f07d0..3e912836a 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -398,7 +398,6 @@ public function export() { $tmp = array(); - $namespace = "http://www.opendd.net/ext/social/1/"; // Generate uuid $uuid = guid_to_uuid($this->getGUID()); @@ -410,9 +409,6 @@ get_subtype_from_id($this->attributes['subtype']) ); - // Set namespace - we're outputting as ODD Social Network Extension - $odd->setNamespace($namespace); - $tmp[] = $odd; // Now add its attributes @@ -446,7 +442,6 @@ // set the time of any metadata created if ($meta) { - $meta->setNamespace($namespace); $meta->setAttribute('published', date("r",$this->time_created)); $tmp[] = $meta; } |