diff --git a/module/execution/control.php b/module/execution/control.php index db8593219c..bd6f5618de 100644 --- a/module/execution/control.php +++ b/module/execution/control.php @@ -2681,6 +2681,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')