From 43be2741b43fb4d08fd9abf337df9389242f3323 Mon Sep 17 00:00:00 2001 From: liuhong Date: Thu, 3 Nov 2022 05:42:11 +0000 Subject: [PATCH] * Resolved feedback #1353. --- module/execution/control.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/module/execution/control.php b/module/execution/control.php index 22b35d12db..babd7a50ec 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -2564,6 +2564,12 @@ class execution extends control $projects = $this->project->getPairsByProgram('', 'noclosed'); $executions = $this->execution->getStatData(0, 'all', 0, 0, false, '', 'id_desc'); + foreach($executions as $execution) + { + $execution->name = htmlspecialchars_decode($execution->name); + $execution->team = htmlspecialchars_decode($execution->team); + } + $teams = $this->dao->select('root,account')->from(TABLE_TEAM) ->where('root')->in($this->app->user->view->sprints) ->andWhere('type')->eq('execution')