index.php 395 B

12345678910111213141516
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Redirection script.
  5. *
  6. * @package chamilo.learnpath
  7. *
  8. * @author Yannick Warnier <ywarnier@beeznest.org>
  9. */
  10. // Flag to allow for anonymous user - needs to be set before global.inc.php.
  11. $use_anonymous = true;
  12. require_once __DIR__.'/../inc/global.inc.php';
  13. header('location: lp_controller.php?'.api_get_cidreq().'&action=list');
  14. exit;