index-logged-dist.php 285 B

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