diff options
| author | Sem <sembrestels@riseup.net> | 2012-01-12 16:15:16 +0100 | 
|---|---|---|
| committer | Sem <sembrestels@riseup.net> | 2012-01-12 16:15:16 +0100 | 
| commit | cc544cfa2086e418318a899ffd550adfb744c7ba (patch) | |
| tree | 6c04fbe2e3df67513aa76803cb8d05c105ba219b /engine/classes/ElggEntity.php | |
| parent | e7d64510ebd823f186282e2b80780295bcca1b79 (diff) | |
| parent | 68e4829ac0959d86c651e7ed6dc255c39694c8af (diff) | |
| download | elgg-cc544cfa2086e418318a899ffd550adfb744c7ba.tar.gz elgg-cc544cfa2086e418318a899ffd550adfb744c7ba.tar.bz2  | |
Merge Elgg 1.8.3.
Diffstat (limited to 'engine/classes/ElggEntity.php')
| -rw-r--r-- | engine/classes/ElggEntity.php | 28 | 
1 files changed, 14 insertions, 14 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php index df87082fe..2fa8e9939 100644 --- a/engine/classes/ElggEntity.php +++ b/engine/classes/ElggEntity.php @@ -1583,36 +1583,36 @@ abstract class ElggEntity extends ElggData implements  		foreach ($this->attributes as $k => $v) {  			$meta = NULL; -			if (in_array( $k, $exportable_values)) { +			if (in_array($k, $exportable_values)) {  				switch ($k) { -					case 'guid' : 			// Dont use guid in OpenDD -					case 'type' :			// Type and subtype already taken care of -					case 'subtype' : -					break; +					case 'guid':			// Dont use guid in OpenDD +					case 'type':			// Type and subtype already taken care of +					case 'subtype': +						break; -					case 'time_created' :	// Created = published +					case 'time_created':	// Created = published  						$odd->setAttribute('published', date("r", $v)); -					break; +						break; -					case 'site_guid' : // Container +					case 'site_guid':	// Container  						$k = 'site_uuid';  						$v = guid_to_uuid($v);  						$meta = new ODDMetaData($uuid . "attr/$k/", $uuid, $k, $v); -					break; +						break; -					case 'container_guid' : // Container +					case 'container_guid':	// Container  						$k = 'container_uuid';  						$v = guid_to_uuid($v);  						$meta = new ODDMetaData($uuid . "attr/$k/", $uuid, $k, $v); -					break; +						break; -					case 'owner_guid' :			// Convert owner guid to uuid, this will be stored in metadata +					case 'owner_guid':			// Convert owner guid to uuid, this will be stored in metadata  						$k = 'owner_uuid';  						$v = guid_to_uuid($v);  						$meta = new ODDMetaData($uuid . "attr/$k/", $uuid, $k, $v); -					break; +						break; -					default : +					default:  						$meta = new ODDMetaData($uuid . "attr/$k/", $uuid, $k, $v);  				}  | 
