diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php
index fbf5a39009..e2d2b0a4d7 100644
--- a/module/my/view/task.html.php
+++ b/module/my/view/task.html.php
@@ -92,7 +92,7 @@
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");
+ 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
{
diff --git a/module/task/model.php b/module/task/model.php
index 245b28dd38..b792318e0b 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' title=' $task->name'") : "$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;