diff --git a/plugins/ktcore/KTColumns.inc.php b/plugins/ktcore/KTColumns.inc.php index a513965..35cb040 100644 --- a/plugins/ktcore/KTColumns.inc.php +++ b/plugins/ktcore/KTColumns.inc.php @@ -472,9 +472,9 @@ class AdvancedWorkflowColumn extends AdvancedColumn { if (($oState == null) || ($oWorkflow == null)) { return '—'; } else { - return sprintf('%s %s', - htmlentities($oState->getName(), ENT_NOQUOTES, 'UTF-8'), - htmlentities($oWorkflow->getName(), ENT_NOQUOTES, 'UTF-8') + return sprintf('%s: %s', + htmlentities($oWorkflow->getName(), ENT_NOQUOTES, 'UTF-8'), + htmlentities($oState->getName(), ENT_NOQUOTES, 'UTF-8') ); } }