I am working modifying an ecommerce plugin, and it makes uses of wp_update_user() function, and everytime the function runs another table (created by the plugin), gets updated too. The problem is that the updated data on that second table is incorrect, and I am having troubles finding the part of the code that does it.
So I was wondering, does the wp_update_user( ) function triggers some "action" so I can search for that in all the files? like those used in for example:
add_action('wp_logout', 'logout_handler');