Hi,
I can add a link to a node, but the delimiters are getting messed up. I'm getting this:
» add new comment | MY LINK | | read more | administer
Which cant be right of course....
Here's what im using to do this:
function emailpage_link($type="node", $node=0, $main=0) {
$links[] = l(t('email this page'), "emailpage", array('title' => t('Send this page to a friend!'), 'class' => 'read-more'));
$links[]=menu("emailpage", t("email this page"), "emailpage_page", 0, 0);
return $links;
}