You are here

function fb_update_2 in Drupal for Facebook 5

Same name and namespace in other branches
  1. 5.2 fb.install \fb_update_2()

The callback URL has changed and this requires manual updates to App settings.

File

./fb.install, line 17

Code

function fb_update_2() {
  $message = t('Warning!  The Drupal for Facebook modules have changed.  Manual intervention is required!  See !url1 or !url2.', array(
    '!url1' => l('http://apps.facebook.com/drupalforfacebook/node/1055', 'http://apps.facebook.com/drupalforfacebook/node/1055'),
    '!url2' => l('http://drupalforfacebook.org/node/1055', 'http://drupalforfacebook.org/node/1055'),
  ));
  drupal_set_message($message);
  watchdog('fb', $message);
}