function theme_fb_app_name_with_links in Drupal for Facebook 5
File
- ./fb_user.module, line 790 
- This module allows Drupal user records to be associated with Facebook user ids. It can create local user accounts when Facebook users visit an application's canvas pages.
Code
function theme_fb_app_name_with_links($fb_app, $is_added = NULL) {
  $output = $fb_app->title;
  // TODO add link to about page
  if ($is_added === FALSE) {
    $links[] = 'add link';
    //XXX
  }
  return $output;
}