--- trackback.module.orig 2008-04-08 10:24:14.000000000 -0500 +++ trackback.module 2008-08-19 23:57:38.000000000 -0500 @@ -56,8 +56,12 @@ return $output; } -function theme_trackback_url($url) { - return '
'. theme('box', t('Trackback URL for this post:'), $url) .'
'; +function theme_trackback_url($url, $message = NULL) { + if (is_null($message)) { + $message = t('Trackback URL for this post:'); + } + $content = "

". $message . " " . $url . "

\n"; + return '
'. theme('box', t('Trackbacks'), $content) .'
'; } /** @@ -181,7 +185,7 @@ case 'view': if (isset($node->can_receive) && empty($node->in_preview)) { - $node->content['trackback'] = array('#weight' => 12); + $node->content['trackback'] = array('#weight' => 99); if ($node->can_receive) { $url = url('node/'. $node->nid, array('absolute' => TRUE)); $tb_url = url('trackback/'. $node->nid, array('absolute' => TRUE));