You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
373 B
14 lines
373 B
15 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
15 years ago
|
/**
|
||
|
* Redirection script
|
||
15 years ago
|
* @package chamilo.learnpath
|
||
15 years ago
|
* @author Yannick Warnier <ywarnier@beeznest.org>
|
||
|
*/
|
||
10 years ago
|
|
||
14 years ago
|
// Flag to allow for anonymous user - needs to be set before global.inc.php.
|
||
15 years ago
|
$use_anonymous = true;
|
||
|
|
||
10 years ago
|
require_once '../inc/global.inc.php';
|
||
9 years ago
|
header('location: lp_controller.php?'.api_get_cidreq().'&action=list');
|