Index: tasks.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/tasks/tasks.module,v
retrieving revision 1.12
diff -u -r1.12 tasks.module
--- tasks.module	19 Mar 2007 15:48:59 -0000	1.12
+++ tasks.module	7 Jun 2007 17:52:58 -0000
@@ -306,7 +306,13 @@
   if ($page) {
     // The page should show the task and any subtasks
     $bc = drupal_get_breadcrumb();
-    $bc[] = l(t('Tasks'), 'tasks');
+    $bc[1] = l(t('Tasks'), 'tasks');
+    if($node->parent) {
+      $parent_node = node_load($node->parent);
+      if($parent_node->parent != 0) {
+        $bc[2] = l($parent_node->title, 'node/'.$node->parent);
+      }
+    }
     drupal_set_breadcrumb($bc);
 
     // Look to see if we need to change node order in this list
