You are here

function usertabs_goto in User Tabs 6

1 string reference to 'usertabs_goto'
usertabs_menu in ./usertabs.module
Implementation of hook_menu().

File

./usertabs.module, line 74
usertabs.module

Code

function usertabs_goto($user) {
  $dest = drupal_get_destination();

  // we need to unset this otherwise drupal_goto gets into a loop and goes straight to the destination url
  unset($_REQUEST['destination']);
  unset($_REQUEST['edit']['destination']);
  drupal_goto("user/{$user->uid}/edit/account", $dest);
}