in fboauth_create_user() {
  ...
  // Allow other modules to manipulate the user information after save.
  foreach (module_implements('fboauth_user_save') as $module) {
    $function = $module . '_fboauth_user_save';
    $function($account, $fbuser);
  }
}

in my module i tried using this.

function mymodule_fboauth_user_save($account, $fbuser) {
	dsm($fbuser);
}

Anything i missed why this is not firing up?

Comments

acausing’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

removed