Index: tasks.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/tasks/tasks.module,v retrieving revision 1.9 diff -b -U3 -r1.9 tasks.module --- tasks.module 8 Aug 2006 12:19:34 -0000 1.9 +++ tasks.module 13 Nov 2006 20:06:05 -0000 @@ -226,7 +226,7 @@ function tasks_link($type, $node = NULL, $teaser = FALSE) { $links = array(); - if ($type == 'node' && $node->type == 'tasks') { + if ($type == 'node' && $node->type == 'tasks' && user_access('create task')) { if (!$teaser) { $links[] = l(t('add new sub-task'), "node/add/tasks", array('title' => t('Add a new task to this task list')), "edit[parent]=$node->nid");