diff options
author | cash <cash.costello@gmail.com> | 2011-11-18 17:50:36 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-28 21:43:59 -0500 |
commit | 90baebb659b3e47dac24da969e232ff0cef94a1b (patch) | |
tree | 7ebc679dd5de987273c11aa7ac2c2369a1fd5ed1 /engine/lib/relationships.php | |
parent | a219beb80c90c377ed5b611a9a502f2dbc04d61a (diff) | |
download | elgg-90baebb659b3e47dac24da969e232ff0cef94a1b.tar.gz elgg-90baebb659b3e47dac24da969e232ff0cef94a1b.tar.bz2 |
Fixes #4118 returning bool from leave group functions
Diffstat (limited to 'engine/lib/relationships.php')
-rw-r--r-- | engine/lib/relationships.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php index 3578f0cb8..5b7080b56 100644 --- a/engine/lib/relationships.php +++ b/engine/lib/relationships.php @@ -158,7 +158,7 @@ function remove_entity_relationship($guid_one, $relationship, $guid_two) { and relationship='$relationship' and guid_two=$guid_two"; - return delete_data($query); + return (bool)delete_data($query); } else { return false; } |