Skip to content
Snippets Groups Projects
Unverified Commit 0696e4f7 authored by Tobias Reischmann's avatar Tobias Reischmann
Browse files

Display triggers of workflow in active workflows table

parent f8819956
No related branches found
No related tags found
No related merge requests found
...@@ -88,10 +88,11 @@ abstract class workflow_table extends \table_sql { ...@@ -88,10 +88,11 @@ abstract class workflow_table extends \table_sql {
if ($triggers) { if ($triggers) {
$triggerstring = $triggers[0]->instancename; $triggerstring = $triggers[0]->instancename;
for ($i = 1; $i < count($triggers); $i++) { for ($i = 1; $i < count($triggers); $i++) {
$triggerstring .= ' '; $triggerstring .= ', ';
$triggerstring .= $triggers[$i]->instancename; $triggerstring .= $triggers[$i]->instancename;
} }
} }
return $triggerstring;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment