You are here

function fb_user_update_6009 in Drupal for Facebook 6.3

File

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

Code

function fb_user_update_6009() {
  $ret = array();
  _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();
  drupal_set_message(t($message, $args), 'warning', FALSE);
  watchdog('fb_user', $message, $args, WATCHDOG_WARNING);
  $ret[] = array(
    'success' => TRUE,
    'query' => $message,
    array(),
  );
  return $ret;
}