You are here

function account_sync_user_update in Account Sync 7.2

Implements hook_user_update().

File

./account_sync.module, line 99
Contains the base module code and hooks for the account sync module.

Code

function account_sync_user_update(&$edit, &$account, $category) {
  module_load_include('inc', 'account_sync', 'account_sync.sender');
  return account_sync_send_update('update', $edit, $account, $category);
}