12 lines
299 B
PHP
12 lines
299 B
PHP
<?php
|
|
|
|
//require_once(dirname(__FILE__)."/htmlUI/ui_browser.php");
|
|
if (strpos($_SERVER['PHP_SELF'], '~') !== false) {
|
|
list(, $user, ) = explode('/', $_SERVER['PHP_SELF']);
|
|
$base = "/$user/campcaster";
|
|
} else {
|
|
$base = "/campcaster";
|
|
}
|
|
|
|
header("LOCATION: $base/htmlUI/ui_browser.php");
|
|
?>
|