index.php 350 B

12345678910111213141516
  1. <?php //$id: $
  2. /**
  3. * Redirection script
  4. * @package dokeos.learnpath
  5. * @author Yannick Warnier <ywarnier@beeznest.org>
  6. */
  7. /**
  8. * Script
  9. */
  10. //flag to allow for anonymous user - needs to be set before global.inc.php
  11. $use_anonymous = true;
  12. require('back_compat.inc.php');
  13. header('location: lp_controller.php?'.api_get_cidReq().'&action=list');
  14. ?>