diff -r1.281 project.module
137,147c137,143
<   switch ($type) {
<     case 'page':
<       if (user_access('access projects')) {
<         $links['project_view_all'] = array(
<           'title' => t('Projects'),
<           'href' => 'project',
<           'attributes' => array('title' => t('View all projects.')),
<         );
<       }
<       break;
<   }
---
>
>   if ($type == 'node' && $node->type == 'project_project' && user_access('access projects')) {
>     $links['project_view_all'] = array(
>     'title' => t('Projects'),
>     'href' => 'project',
>     'attributes' => array('title' => t('View all projects.')),
>   ); 