You are here

function fboauth_user_update in Facebook OAuth (FBOAuth) 6

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

Implements hook_user_update().

1 call to fboauth_user_update()
fboauth_user in ./fboauth.module
Implements hook_user().

File

./fboauth.module, line 128

Code

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