示例#1
0
 function EpilogActions()
 {
     global $DB;
     //send email events
     if (COption::GetOptionString("main", "check_events", "Y") !== "N") {
         $DB->StartUsingMasterOnly();
         CEvent::CheckEvents();
         $DB->StopUsingMasterOnly();
     }
     //files cleanup
     CMain::FileAction();
 }
示例#2
0
 function EpilogActions()
 {
     CEvent::CheckEvents();
     CMain::FileAction();
 }