You are here

function oa_core_user_update in Open Atrium Core 7.2

Implements hook_user_update()

File

includes/oa_core.cache.inc, line 175
Code for OpenAtrium caching helpers

Code

function oa_core_user_update(&$edit, $account, $category) {
  if (empty($account)) {
    global $user;
    $account = $user;
  }
  oa_core_clear_group_cache(NULL, $account->uid);
}