aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/objects.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-02-22 17:40:42 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-02-22 17:40:42 +0000
commit00ed0f85bc5f29294840481da83ba870c81d9688 (patch)
tree5685825381ac385329f84e9ea31440f67c625f68 /engine/lib/objects.php
parent6afa8f116066816be7d280d21b03672a3005b567 (diff)
downloadelgg-00ed0f85bc5f29294840481da83ba870c81d9688.tar.gz
elgg-00ed0f85bc5f29294840481da83ba870c81d9688.tar.bz2
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
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r--engine/lib/objects.php8
1 files changed, 4 insertions, 4 deletions
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