You are here

function fbconnect_refresh_user_avatar in Facebook Connect 5

2 calls to fbconnect_refresh_user_avatar()
fbconnect_cron in ./fbconnect.module
Impletementation of hook_cron
fbconnect_user_settings_form_submit in ./fbconnect.module
Handle post-validation user_settingsForm submission.

File

./fbconnect.module, line 787
This module allows site visitors to connect and register with facebook account

Code

function fbconnect_refresh_user_avatar($fbuid, $uid) {
  db_query("UPDATE {users} SET picture = '%s' WHERE uid = %d", fbconnect_get_fb_avatar($fbuid), $uid);
}