diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php
index 24aed096b0..e2d2b0a4d7 100644
--- a/module/my/view/task.html.php
+++ b/module/my/view/task.html.php
@@ -89,8 +89,16 @@
pri;?>' title='task->priList, $task->pri);?>'>task->priList, $task->pri);?> |
' title='name?>'>
team)) echo '' . $this->lang->task->multipleAB . ' ';?>
- parent > 0) echo '' . $this->lang->task->childrenAB . ' ' . html::a($this->createLink('task', 'view', "taskID=$task->parent", '', '', $task->project), $task->parentName, '', "title={$task->parentName}") . ' / ';?>
- createLink('task', 'view', "taskID=$task->id", '', '', $task->project), $task->name, null, "style='color: $task->color' data-group='execution'");?>
+ parent > 0)
+ {
+ echo '' . $this->lang->task->childrenAB . ' ' . html::a($this->createLink('task', 'view', "taskID=$task->id", '', '', $task->project), $task->parentName . ' / '. $task->name, '', "title='{$task->parentName} / {$task->name}'");
+ }
+ else
+ {
+ echo html::a($this->createLink('task', 'view', "taskID=$task->id", '', '', $task->project), $task->name, null, "style='color: $task->color' data-group='execution'");
+ }
+ ?>
children)) echo '';?>
|
systemMode == 'new'):?>
diff --git a/module/task/model.php b/module/task/model.php
index 04742be2ba..fd8ec01ac8 100644
--- a/module/task/model.php
+++ b/module/task/model.php
@@ -3032,7 +3032,7 @@ class taskModel extends model
if($task->module and isset($modulePairs[$task->module])) echo "" . $modulePairs[$task->module] . ' ';
if($task->parent > 0) echo '' . $this->lang->task->childrenAB . ' ';
if(!empty($task->team)) echo '' . $this->lang->task->multipleAB . ' ';
- echo $canView ? html::a($taskLink, $task->name, null, "style='color: $task->color'") : "$task->name";
+ echo $canView ? html::a($taskLink, $task->name, null, "style='color: $task->color' title='$task->name'") : "$task->name";
if(!empty($task->children)) echo '';
if($task->fromBug) echo html::a(helper::createLink('bug', 'view', "id=$task->fromBug"), "[BUG#$task->fromBug]", '', "class='bug'");
break;