index.php 251 B

1234567891011
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Redirects to "myticket.php".
  5. *
  6. * @package chamilo.plugin.ticket
  7. */
  8. require_once __DIR__.'/../inc/global.inc.php';
  9. header('Location:'.api_get_path(WEB_CODE_PATH).'ticket/tickets.php');
  10. exit;