From 971c7b335d447ea2f6ea739d1623c1c60752e392 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Thu, 7 Dec 2023 22:28:52 -0500 Subject: [PATCH] * Fix bug #107598. --- module/programplan/model.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/programplan/model.php b/module/programplan/model.php index 439129c7f4..0695a94ca6 100755 --- a/module/programplan/model.php +++ b/module/programplan/model.php @@ -279,7 +279,8 @@ class programplanModel extends model foreach($tasks as $task) { $execution = zget($plans, $task->execution, array()); - $priIcon = sprintf($taskPri, $task->pri, $task->pri, $task->pri); + $pri = zget($this->lang->task->priList, $task->pri); + $priIcon = sprintf($taskPri, $task->pri, $pri, $pri); $estStart = helper::isZeroDate($task->estStarted) ? '' : $task->estStarted; $estEnd = helper::isZeroDate($task->deadline) ? '' : $task->deadline;