Merged in bugfix/PMCORE-3435 (pull request #8225)

PMCORE-3435

Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
Andrea Adamczyk
2021-10-19 19:36:30 +00:00
committed by Julio Cesar Laura Avendaño
3 changed files with 60 additions and 4 deletions

View File

@@ -34,9 +34,9 @@ foreach ($results as $row) {
$casesPerTask = count($row);
$row = head($row);
$processUid = $row['PRO_UID'];
$proTitle = 'PRO_TITLE';
$proTitle = $row['PRO_TITLE'];
$taskUid = $row['TAS_UID'];
$taskTitle = 'TAS_TITLE';
$taskTitle = $row['TAS_TITLE'];
$dynaformUid = $row['DYN_UID'];
$tabTitle = $taskTitle . " (" . (($activeNumRows > 0) ? $casesPerTask : 0) . ")";