index-logged-dist.php 290 B

12345678910111213141516
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Redirect to normal Chamilo.
  5. *
  6. * @package chamilo.custompages
  7. */
  8. require_once api_get_path(SYS_PATH).'main/inc/global.inc.php';
  9. $www = api_get_path('WEB_PATH');
  10. /**
  11. * Redirect.
  12. */
  13. header("Location: $www/user_portal.php");
  14. exit;