diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-11 17:39:24 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-11 17:39:24 +0000 |
commit | 46b7bce71977b0762d38acf5f7d597af221bab68 (patch) | |
tree | 5a05bbd6952ef2a7289b3855f08dee78fc210a98 /engine/lib/annotations.php | |
parent | df73163e0492bc8589dc65ba3ebff71be23be60f (diff) | |
download | elgg-46b7bce71977b0762d38acf5f7d597af221bab68.tar.gz elgg-46b7bce71977b0762d38acf5f7d597af221bab68.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Entity ODD export
git-svn-id: https://code.elgg.org/elgg/trunk@435 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r-- | engine/lib/annotations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 68c9bfc22..4983dcacf 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -427,7 +427,7 @@ function export_annotation_plugin_hook($hook, $entity_type, $returnvalue, $params) { // Sanity check values - if ((!is_array($params)) && (!isset($params['guid']))) +/* if ((!is_array($params)) && (!isset($params['guid']))) throw new InvalidParameterException("GUID has not been specified during export, this should never happen."); if (!is_array($returnvalue)) @@ -442,7 +442,7 @@ { foreach ($result as $r) $returnvalue[] = $r; - } + }*/ return $returnvalue; } |