You are here

function fb_user_update_7001 in Drupal for Facebook 7.3

Lower weight of fb_user.module so that it's hooks will be invoked before third-party modules.

File

./fb_user.install, line 69
Install file for fb_user.module.

Code

function fb_user_update_7001() {
  _fb_user_install_set_weight();
  $message = 'Lowered weight of fb_user.module, so that its hooks will be invoked before third-party modules.';
  $args = array();
  watchdog('fb_user', $message, $args, WATCHDOG_WARNING);
  return t($message, $args);
}