dealwithit.php 325 B

1234567891011121314
  1. <?php
  2. //deal with it delayed tasks processing
  3. if (ubRouting::get('action') == 'dealwithit') {
  4. if ($alterconf['DEALWITHIT_ENABLED']) {
  5. $dealWithIt = new DealWithIt();
  6. $dealWithIt->tasksProcessing();
  7. die('OK:DEALWITHIT');
  8. } else {
  9. die('ERROR:DEALWITHIT DISABLED');
  10. }
  11. }