fix typo in WebGUI::Workflow::Cron::delete and reenable default notification to spectre of Cron deletion
This commit is contained in:
parent
d8d1863c47
commit
fed13bad77
2 changed files with 2 additions and 1 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
Display of events which span weeks, months and/or days
|
Display of events which span weeks, months and/or days
|
||||||
- add: User Defined Fields in Posts Edit Form can now be used as hidden form
|
- add: User Defined Fields in Posts Edit Form can now be used as hidden form
|
||||||
elements
|
elements
|
||||||
|
- fix: Collaboration System not deleting getCSMail workflows (perlDreamer Consulting, LLC)
|
||||||
|
|
||||||
|
|
||||||
7.3.13
|
7.3.13
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@ sub delete {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
my $skipNotify = shift;
|
my $skipNotify = shift;
|
||||||
$self->session->db->deleteRow("WorkflowSchedule","taskId",$self->getId);
|
$self->session->db->deleteRow("WorkflowSchedule","taskId",$self->getId);
|
||||||
if ($skipNotify) {
|
if (! $skipNotify) {
|
||||||
WebGUI::Workflow::Spectre->new($self->session)->notify("cron/deleteJob", $self->session->config->getFilename."-".$self->getId);
|
WebGUI::Workflow::Spectre->new($self->session)->notify("cron/deleteJob", $self->session->config->getFilename."-".$self->getId);
|
||||||
}
|
}
|
||||||
undef $self;
|
undef $self;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue