From eca0feb9a0380fb1e700af0d183f295fef55a05b Mon Sep 17 00:00:00 2001 From: brettp Date: Tue, 7 Jul 2009 15:09:53 +0000 Subject: Refs #1099: Using write access hook to allow group-only ACLs. Need to examine better solutions after 1.7. git-svn-id: https://code.elgg.org/elgg/trunk@3395 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/access.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engine/lib/access.php') diff --git a/engine/lib/access.php b/engine/lib/access.php index aace86335..c97149582 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -100,15 +100,16 @@ $access_array[$user_id] = $tmp_access_array; } else - return $tmp_access_array; // No user id logged in so we can only access public info + $tmp_return = $tmp_access_array; // No user id logged in so we can only access public info } else { $tmp_access_array = $access_array[$user_id]; } - return $access_array[$user_id]; + $tmp_return = $access_array[$user_id]; + return trigger_plugin_hook('access:collections:read','user',array('user_id' => $user_id, 'site_id' => $site_id),$tmp_access_array); } /** -- cgit v1.2.3