fix: EMS Prerequisite Cache Stale
This commit is contained in:
parent
6f96677a5e
commit
e6aafa2f7f
2 changed files with 9 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
||||||
- fix: Edit Style returns wrong page
|
- fix: Edit Style returns wrong page
|
||||||
- fix: Can not make Shortcut for CollaborationSystem
|
- fix: Can not make Shortcut for CollaborationSystem
|
||||||
- fix: EMS Transactions Dropping Free Events
|
- fix: EMS Transactions Dropping Free Events
|
||||||
|
- fix: EMS Prerequisite Cache Stale
|
||||||
|
|
||||||
6.99.3
|
6.99.3
|
||||||
- Someone removed the status from the submission templates. That has been
|
- Someone removed the status from the submission templates. That has been
|
||||||
|
|
|
||||||
|
|
@ -3251,6 +3251,14 @@ sub www_editPrereqSetSave {
|
||||||
foreach (@newRequiredEvents) {
|
foreach (@newRequiredEvents) {
|
||||||
$self->session->db->write("insert into EventManagementSystem_prerequisiteEvents values (?,?)",[$psid,$_]);
|
$self->session->db->write("insert into EventManagementSystem_prerequisiteEvents values (?,?)",[$psid,$_]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Rebuild the EMS Cache
|
||||||
|
WebGUI::Workflow::Instance->create($self->session, {
|
||||||
|
workflowId=>'EMSworkflow00000000001',
|
||||||
|
className=>"none",
|
||||||
|
priority=>1
|
||||||
|
});
|
||||||
|
|
||||||
return $self->www_managePrereqSets();
|
return $self->www_managePrereqSets();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue