tsupport.php 253 B

12345678910111213
  1. <?php
  2. //tsupport api
  3. if ($_GET['action'] == 'tsupport') {
  4. if ($alterconf['TSUPPORT_API']) {
  5. $tsupport = new TSupportApi();
  6. $tsupport->catchRequest();
  7. } else {
  8. die('ERROR:NO_TSUPPORT_API_ENABLED');
  9. }
  10. }