aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/access.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-11-18 17:44:45 -0500
committercash <cash.costello@gmail.com>2011-11-18 17:44:45 -0500
commit15f02eea51f0f0eb92e427b627324d58af166e5e (patch)
treeb39c8ac365016d4d7a55a96f301ae7fc8e0ef3d2 /engine/lib/access.php
parent3d975e028c3d5bde2ee8a5c9e09d7650b8f3c505 (diff)
downloadelgg-15f02eea51f0f0eb92e427b627324d58af166e5e.tar.gz
elgg-15f02eea51f0f0eb92e427b627324d58af166e5e.tar.bz2
Fixes #4115 returning bool from remove_user_from_access_collection()
Diffstat (limited to 'engine/lib/access.php')
-rw-r--r--engine/lib/access.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/access.php b/engine/lib/access.php
index ba3820f46..08b9283cd 100644
--- a/engine/lib/access.php
+++ b/engine/lib/access.php
@@ -717,7 +717,7 @@ function remove_user_from_access_collection($user_guid, $collection_id) {
WHERE access_collection_id = {$collection_id}
AND user_guid = {$user_guid}";
- return delete_data($q);
+ return (bool)delete_data($q);
}
/**