* Resolved feedback #4035: program display error on project browse.

This commit is contained in:
孔令茂
2023-09-06 15:59:43 +08:00
parent 73ea876a42
commit f1142367df
+1 -1
View File
@@ -574,7 +574,7 @@ class programModel extends model
$projectList = $stmt->orderBy($orderBy)->page($pager)->fetchAll('id');
/* Determine how to display the name of the program. */
if($programTitle and $this->config->systemMode == 'ALM')
if($programTitle and in_array($this->config->systemMode, array('ALM', 'PLM')))
{
$programList = $this->getPairs();
foreach($projectList as $id => $project)