From ce9b8f297892f9cbd49e52a75ff78b11a4a9ca01 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Tue, 10 Oct 2023 11:22:04 +0800 Subject: [PATCH] * Fix bug #39342. --- module/task/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/task/model.php b/module/task/model.php index b9bf9c30c1..e33ad56df4 100755 --- a/module/task/model.php +++ b/module/task/model.php @@ -4663,7 +4663,7 @@ class taskModel extends model $taskName = ''; $taskLink = helper::createLink('task', 'view', "taskID=$task->id", '', $this->config->vision == 'lite' ? true : false); - $linkClass = $this->config->vision == 'lite' ? 'class="iframe"' : ''; + $linkClass = $this->config->vision == 'lite' ? 'data-toggle="modal" data-type="iframe"' : ''; if($task->parent > 0 and isset($task->parentName)) $task->name = "{$task->parentName} / {$task->name}"; if(!empty($task->product) and isset($branchGroups[$task->product][$task->branch]) and $showBranch) $taskName .= "" . $branchGroups[$task->product][$task->branch] . ' ';