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.
17 lines
306 B
17 lines
306 B
![]()
14 years ago
|
<?php
|
||
![]()
13 years ago
|
/* For licensing terms, see /license.txt */
|
||
|
/**
|
||
|
* Redirect to normal Chamilo
|
||
|
* @package chamilo.custompages
|
||
|
*/
|
||
|
/**
|
||
|
* Initialization
|
||
|
*/
|
||
![]()
14 years ago
|
require_once(dirname(__FILE__).'/../main/inc/global.inc.php');
|
||
![]()
14 years ago
|
|
||
![]()
13 years ago
|
$www = api_get_path('WEB_PATH');
|
||
![]()
13 years ago
|
/**
|
||
|
* Redirect
|
||
|
*/
|
||
|
header("Location: $www/user_portal.php");
|