fix: new spectre.pl error

This commit is contained in:
Martin Kamerbeek 2006-07-11 15:17:19 +00:00
parent 2d9565775f
commit f63dc89a0b
3 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
7.0.1
- fix: User profile field "Department" needs i18n
- fix: new spectre.pl error (Martin Kamerbeek / Procolix)
7.0.0
- Welcome to a whole new world of WebGUI. After 2.5 years and 20,000 hours of

View file

@ -331,6 +331,7 @@ sub loadSchedule {
$data->{sitename} = $session->config->get("sitename")->[0];
$kernel->yield("addJob", $data);
}
$result->finish;
$session->close;
}

View file

@ -267,6 +267,7 @@ sub loadWorkflows {
while (my ($id, $priority) = $result->array) {
$kernel->yield("addInstance", {gateway=>$config->get("gateway"), sitename=>$config->get("sitename")->[0], instanceId=>$id, priority=>$priority});
}
$result->finish;
$session->close;
}