index.php 248 B

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