--- link_codes.module.orig 2009-05-13 17:07:17.000000000 -0400 +++ link_codes.module 2009-05-13 17:15:04.000000000 -0400 @@ -107,14 +107,15 @@ function link_codes_share_tab($op, $args ******************************************************************************/ function link_codes_generate($op, $node) { - $alias = drupal_get_path_alias('node/'.$node->nid); + $url = url('node/' . $node->nid, array('absolute' => TRUE)); + $view = t('View "@title"', array('@title' => $node->title)); switch ($op) { case "direct": - return '
'; + return ''; case "html": - return ''; + return ''; case "forum": - return ''; + return ''; } }