CC-1695 Remove Campcaster Studio and make install easier Removed unused files. Updated version number. Fixed some path names.
10 lines
No EOL
238 B
PHP
10 lines
No EOL
238 B
PHP
<?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");
|
|
?>
|