This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
phptsmadmin/htdocs/redir.php
2011-05-27 18:44:44 +10:00

15 lines
379 B
PHP

<?php
// $Header: /cvsroot/phptsmadmin/phpTSMadmin/htdocs/schedule.gantt.php,v 1.4 2009/04/19 04:00:59 wurley Exp $
# @todo: Hotlink the hostname to the detail script.
# Required Libraries
require './common.php';
$base = preg_replace('/htdocs\/cmd.php/','',$_SERVER['SCRIPT_NAME']);
if ($_REQUEST['page'])
header(sprintf('Location: %s%s',$base,$_REQUEST['page']));
# End
?>