Files
Chamilo/custompages/index-logged-dist.php
2025-04-10 12:51:27 +02:00

16 lines
290 B
PHP

<?php
/* For licensing terms, see /license.txt */
/**
* Redirect to normal Chamilo.
*
* @package chamilo.custompages
*/
require_once api_get_path(SYS_PATH).'main/inc/global.inc.php';
$www = api_get_path('WEB_PATH');
/**
* Redirect.
*/
header("Location: $www/user_portal.php");
exit;