diff --git a/module/task/model.php b/module/task/model.php
index 0201d70d01..23b614e688 100644
--- a/module/task/model.php
+++ b/module/task/model.php
@@ -3464,7 +3464,7 @@ class taskModel extends model
$storyChanged = (!empty($task->storyStatus) and $task->storyStatus == 'active' and $task->latestStoryVersion > $task->storyVersion and !in_array($task->status, array('cancel', 'closed')));
$canView = common::hasPriv('task', 'view');
- $taskLink = helper::createLink('task', 'view', "taskID=$task->id", '', true);
+ $taskLink = helper::createLink('task', 'view', "taskID=$task->id");
$account = $this->app->user->account;
$id = $col->id;
if($col->show)
@@ -3522,7 +3522,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' class='iframe'") : "$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;