From 792112a10ead7451933d2f9813ae050034b2b5a6 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 24 Feb 2009 10:49:26 +0000 Subject: Added fixes to create_entity and add_widgets to correctly handle containers. git-svn-id: https://code.elgg.org/elgg/trunk@2912 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index a873fa67a..3597040c9 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1320,7 +1320,7 @@ if (!$container_guid) return true; $container = get_entity($container_guid); - + if (($container) && ($user)) { @@ -1368,7 +1368,10 @@ $site_guid = (int) $site_guid; if ($container_guid == 0) $container_guid = $owner_guid; - if (!can_write_to_container($owner_guid, $container_guid, $type)) return false; + $user = get_loggedin_user(); + if (!can_write_to_container($user->guid, $owner_guid, $type)) return false; + if ($owner_guid != $container_guid) + if (!can_write_to_container($user->guid, $container_guid, $type)) return false; if ($type=="") throw new InvalidParameterException(elgg_echo('InvalidParameterException:EntityTypeNotSet')); -- cgit v1.2.3