aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/objects.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 16:16:34 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-05-20 16:16:34 +0000
commitbe1e1e8d5d726eccd964b404234423bd0119e321 (patch)
tree09aa8325a2c5aa2838cd0d5f30e6518909800fa4 /engine/lib/objects.php
parente494c6fea5d9eb5714849c21d5452c6179f4373d (diff)
downloadelgg-be1e1e8d5d726eccd964b404234423bd0119e321.tar.gz
elgg-be1e1e8d5d726eccd964b404234423bd0119e321.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Fixed direct load by guid issue git-svn-id: https://code.elgg.org/elgg/trunk@662 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/objects.php')
-rw-r--r--engine/lib/objects.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index 29f29955a..8d78bddd8 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -70,9 +70,12 @@
throw new InvalidParameterException("Passing a non-ElggObject to an ElggObject constructor!");
// We assume if we have got this far, $guid is an int
- else if (is_int($guid)) {
+ else if (is_numeric($guid)) {
if (!$this->load($guid)) throw new IOException("Could not create a new ElggObject object from GUID:$guid");
- }
+ }
+
+ else
+ throw new IOException("Unrecognised value passed to constuctor.");
}
}