diff --git a/module/task/model.php b/module/task/model.php
index 1597b728db..f18fd2c77f 100644
--- a/module/task/model.php
+++ b/module/task/model.php
@@ -3027,7 +3027,7 @@ class taskModel extends model
if(!empty($task->team)) echo '' . $this->lang->task->multipleAB . ' ';
echo $canView ? html::a($taskLink, $task->name, null, "style='color: $task->color'") : "$task->name";
if(!empty($task->children)) echo '';
- if($task->fromBug) echo html::a(helper::createLink('bug', 'view', "id=$task->fromBug"), "[BUG#$task->fromBug]", '_blank', "class='bug'");
+ if($task->fromBug) echo html::a(helper::createLink('bug', 'view', "id=$task->fromBug"), "[BUG#$task->fromBug]", '', "class='bug'");
break;
case 'type':
echo $this->lang->task->typeList[$task->type];