You are here

function finder_user_finder_goto in Finder 7

Same name and namespace in other branches
  1. 6 modules/finder_user/finder_user.module \finder_user_finder_goto()

Implements hook_finder_goto().

See also

hook_finder_goto()

File

modules/finder_user/finder_user.module, line 181
The finder user module.

Code

function finder_user_finder_goto($finder, $result) {
  drupal_goto('user/' . $result->uid);
}