Description
This event will be triggered when the profile is being updated; successfully or not.
Params
An array with two items; user id and true (success)/false (fail) on profile update operation.
Array ( [0] => 1, [1] => true )
Example
function onAfterProfileUpdate( $arrItems ) { if ($arrItems[1]) { /* perform your update success handler here */ } else { /* perform your update failed handler here */ } }