You are here

function fboauth_user_update in Facebook OAuth (FBOAuth) 7.2

Same name and namespace in other branches
  1. 6 fboauth.module \fboauth_user_update()
  2. 7 fboauth.module \fboauth_user_update()

Implements hook_user_update().

File

./fboauth.module, line 132

Code

function fboauth_user_update(&$edit, &$account, $category) {
  if (isset($edit['fboauth_fbid'])) {
    fboauth_save($account->uid, $edit['fboauth_fbid']);
  }
}