diff options
author | Cash Costello <cash.costello@gmail.com> | 2013-02-09 08:01:12 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2013-02-09 08:01:12 -0500 |
commit | f416d7ba66000d485260a8e63962541afa248320 (patch) | |
tree | 854c25506b0caade47b84ca8fdd24148666a294f /engine/lib/users.php | |
parent | 707df9db27cf2154910978427b9844448bcf931a (diff) | |
download | elgg-f416d7ba66000d485260a8e63962541afa248320.tar.gz elgg-f416d7ba66000d485260a8e63962541afa248320.tar.bz2 |
small changes to previous commit from Steve's cleanup
Diffstat (limited to 'engine/lib/users.php')
-rw-r--r-- | engine/lib/users.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/lib/users.php b/engine/lib/users.php index 7a6245261..7365a6b68 100644 --- a/engine/lib/users.php +++ b/engine/lib/users.php @@ -1201,14 +1201,13 @@ function set_last_login($user_guid) { * @param string $object_type user * @param ElggUser $object User object * - * @return bool + * @return void * @access private */ function user_create_hook_add_site_relationship($event, $object_type, $object) { global $CONFIG; add_entity_relationship($object->getGUID(), 'member_of_site', elgg_get_site_entity()->guid); - return true; } /** |