function spam_content_user_profile_update in Spam 6
Be sure we're scanning the latest profile data.
1 call to spam_content_user_profile_update()
- spam_user in content/
spam_content_user.inc
File
- content/
spam_content_user.inc, line 222 - Include file for integration with the user system.
Code
function spam_content_user_profile_update($user) {
if (module_exists('profile')) {
profile_load_profile($user);
}
return $user;
}