diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-24 01:53:48 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-11-24 01:53:48 +0000 |
commit | 03f508d642ded46975a8719db9406876d316d90b (patch) | |
tree | 5db93e13603079089085353d82bdd53cf0c2ca0a /engine | |
parent | b24d75c8060ff50f07c95831de5e585707b9e89d (diff) | |
download | elgg-03f508d642ded46975a8719db9406876d316d90b.tar.gz elgg-03f508d642ded46975a8719db9406876d316d90b.tar.bz2 |
entities can now have metadata of 0 and return the correct type. Fixes #1192
git-svn-id: http://code.elgg.org/elgg/trunk@3705 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/entities.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 1ac8b37bb..df8cc2f7f 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -143,12 +143,9 @@ abstract class ElggEntity implements // No, so see if its in the meta data for this entity $meta = $this->getMetaData($name); - if ($meta) { - return $meta; - } - - // Can't find it, so return null - return null; + + // getMetaData returns NULL if $name is not found + return $meta; } /** |