You are here

function fbconnect_redirect_submit in Facebook Connect 5

Same name and namespace in other branches
  1. 6.2 fbconnect.module \fbconnect_redirect_submit()
  2. 6 fbconnect.module \fbconnect_redirect_submit()

Redirects the user to the account linking page.

File

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

Code

function fbconnect_redirect_submit($form, &$form_state) {
  drupal_get_messages('status');
  drupal_goto('user/' . $GLOBALS['user']->uid . '/fbconnect');
}