You are here

function userpoints_list_my_userpoints_forward in User Points 6

Forward to the myuserpoints page of the current user.

1 string reference to 'userpoints_list_my_userpoints_forward'
userpoints_menu in ./userpoints.module
Implementation of hook_menu().

File

./userpoints.module, line 198

Code

function userpoints_list_my_userpoints_forward() {
  global $user;
  drupal_goto('myuserpoints/' . $user->uid);
}