From be1e1e8d5d726eccd964b404234423bd0119e321 Mon Sep 17 00:00:00 2001 From: icewing Date: Tue, 20 May 2008 16:16:34 +0000 Subject: Marcus Povey * Fixed direct load by guid issue git-svn-id: https://code.elgg.org/elgg/trunk@662 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/objects.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'engine/lib/objects.php') 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."); } } -- cgit v1.2.3