From 00ed0f85bc5f29294840481da83ba870c81d9688 Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 22 Feb 2010 17:40:42 +0000 Subject: Fixes #1528: Correctly throwing exceptions for objects, groups, and users. git-svn-id: http://code.elgg.org/elgg/trunk@3968 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/objects.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engine/lib/objects.php') diff --git a/engine/lib/objects.php b/engine/lib/objects.php index 85ad92a07..6023a4805 100644 --- a/engine/lib/objects.php +++ b/engine/lib/objects.php @@ -55,7 +55,7 @@ class ElggObject extends ElggEntity { // Is $guid is an ElggObject? Use a copy constructor else if ($guid instanceof ElggObject) { elgg_deprecated_notice('This type of usage of the ElggObject constructor was deprecated. Please use the clone method.', 1.7); - + foreach ($guid->attributes as $key => $value) { $this->attributes[$key] = $value; } @@ -69,7 +69,7 @@ class ElggObject extends ElggEntity { // We assume if we have got this far, $guid is an int else if (is_numeric($guid)) { if (!$this->load($guid)) { - IOException(sprintf(elgg_echo('IOException:FailedToLoadGUID'), get_class(), $guid)); + throw new IOException(sprintf(elgg_echo('IOException:FailedToLoadGUID'), get_class(), $guid)); } } @@ -343,8 +343,8 @@ function get_object_sites($object_guid, $limit = 10, $offset = 0) { $offset = (int)$offset; return elgg_get_entities_from_relationship(array( - 'relationship' => 'member_of_site', - 'relationship_guid' => $object_guid, + 'relationship' => 'member_of_site', + 'relationship_guid' => $object_guid, 'types' => 'site', 'limit' => $limit, 'offset' => $offset -- cgit v1.2.3