? link.patch
Index: project.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/project.module,v
retrieving revision 1.239
diff -u -F^f -r1.239 project.module
--- project.module	16 May 2006 08:15:17 -0000	1.239
+++ project.module	19 May 2006 00:39:51 -0000
@@ -272,14 +272,21 @@ function project_link($type, $node = 0, 
   switch ($type) {
     case 'page':
       if (user_access('access projects')) {
-        $links[] = l(t('projects'), 'project', array('title' => t('View all projects.')));
+        $links['project_view_all] = array(
+          '#title' => t('projects'),
+          '#href' => 'project',
+          '#attributes' => array('title' => t('View all projects.'))
+        );
       }
       break;
     case 'node':
       if ($node->type == 'project_issue') {
         if (user_access('create project issues')) {
           $project = node_load(array('nid' => $node->pid, 'type' => 'project_project'));
-          $links[] = l(t('follow up'), "project/comments/add/$node->nid");
+          $links['project_follow_up'] = array(
+            '#title' => t('follow up'),
+            '#href' => "project/comments/add/$node->nid"
+          );
         }
       }
       break;
