a bunch of bug fixes and tweaks related to workflow/versioning

This commit is contained in:
JT Smith 2006-03-23 16:56:08 +00:00
parent f73b2996da
commit 985417afd3
9 changed files with 38 additions and 9 deletions

View file

@ -49,7 +49,11 @@ sub www_addWorkflow {
);
my %options = ();
foreach my $object (keys %{$session->config->get("workflowActivities")}) {
$options{$object} = $object;
if ($object eq "None") {
$options{$object} = $i18n->get("no object");
} else {
$options{$object} = $object;
}
}
$f->selectBox(
name=>"type",