fix: Activity list expands outside of edit workflow screen

This commit is contained in:
Roy Johnson 2006-11-07 21:23:19 +00:00
parent 1330a1c408
commit 9c8399d93b
2 changed files with 2 additions and 1 deletions

View file

@ -36,6 +36,7 @@
- fix: RSS for collaboration systems now properly shows in the head rather than the body - fix: RSS for collaboration systems now properly shows in the head rather than the body
- fix: Gantt chart bars erroneously being shifted one day to the right - fix: Gantt chart bars erroneously being shifted one day to the right
- fix: Post titles containing periods result in urls containing periods - fix: Post titles containing periods result in urls containing periods
- fix: Activity list expands outside of edit workflow screen
7.1.4 7.1.4
- Template variables in the main Survey Template were out of date in the - Template variables in the main Survey Template were out of date in the

View file

@ -213,7 +213,7 @@ sub www_editWorkflow {
hoverHelp=>$i18n->get("is serial help") hoverHelp=>$i18n->get("is serial help")
); );
$f->submit; $f->submit;
my $steps = '<table class="content">'; my $steps = '<div style="clear:both"></div><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) { while (my ($id, $title) = $rs->array) {
$steps .= '<tr><td>' $steps .= '<tr><td>'