From 3191a07d1e5fbd889886150d326101a38e3a3342 Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 15 Aug 2008 10:31:09 +0000 Subject: The front page now only shows content and groups. git-svn-id: https://code.elgg.org/elgg/trunk@1929 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 427dd5c7d..ee1066e99 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1346,8 +1346,7 @@ $where = array(); - if (is_array($type)) { - + if (is_array($type)) { $tempwhere = ""; if (sizeof($type)) foreach($type as $typekey => $subtypearray) { @@ -2045,13 +2044,13 @@ * @param true|false $viewtypetoggle Whether or not to allow gallery view * @return string A viewable list of entities */ - function list_registered_entities($owner_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = false) { + function list_registered_entities($owner_guid = 0, $limit = 10, $fullview = true, $viewtypetoggle = false, $allowedtypes = true) { $typearray = array(); if ($object_types = get_registered_entity_types()) { foreach($object_types as $object_type => $subtype_array) { - if (is_array($subtype_array) && sizeof($subtype_array)) + if (is_array($subtype_array) && sizeof($subtype_array) && (in_array($object_type,$allowedtypes) || $allowedtypes === true)) foreach($subtype_array as $object_subtype) { $typearray[$object_type][] = $object_subtype; } -- cgit v1.2.3