sync_admin_table.php 296 B

12345678910111213141516
  1. <?php
  2. require_once "bootstrap.inc.php";
  3. if (! NEWSYNC_ENABLE)
  4. die('New Sync method disabled');
  5. require_once CLASS_PATH."/controller/table.php";
  6. $controller = new Controller\table();
  7. $controller->execute();
  8. $controller->display();
  9. echo '<hr />'; echo '<h2>Debug</h2>'; $logger->display();