fixed a capitalization problem
This commit is contained in:
parent
78b97985ab
commit
350f3908e6
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ sub www_editWorkflow {
|
|||
);
|
||||
$f->submit;
|
||||
my $steps = '<table class="content">';
|
||||
my $rs = $session->db->read("select activityId, title from workflowActivity where workflowId=? order by sequenceNumber",[$workflow->getId]);
|
||||
my $rs = $session->db->read("select activityId, title from WorkflowActivity where workflowId=? order by sequenceNumber",[$workflow->getId]);
|
||||
while (my ($id, $title) = $rs->array) {
|
||||
$steps .= '<tr><td>'
|
||||
.$session->icon->delete("op=deleteWorkflowActivity;workflowId=".$workflow->getId.";activityId=".$id, undef, $i18n->get("confirm delete activity"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue