converted delete expired events hourly script

This commit is contained in:
JT Smith 2006-03-01 19:59:24 +00:00
parent 103969816e
commit 136a89ee7a
7 changed files with 134 additions and 56 deletions

View file

@ -95,7 +95,10 @@ sub www_editCronJob {
hoverHelp=>$i18n->get("run once help")
);
my $value = $cron->get("workflowId") if defined $cron;
my $type = "None" unless defined $cron;
my $type = "None";
if (defined $cron) {
$type = $cron->get("className");
}
$f->workflow(
name=>"workflowId",
value=>$value,