new structure UI

This commit is contained in:
naomiaro 2010-10-01 10:50:59 -04:00
parent 70bf3d6f1c
commit bb5091fd2f
9 changed files with 23 additions and 476 deletions

10
index.php Normal file
View file

@ -0,0 +1,10 @@
<?php
if (strpos($_SERVER['PHP_SELF'], '~') !== false) {
list(, $user, ) = explode('/', $_SERVER['PHP_SELF']);
$base = "/$user/campcaster";
} else {
$base = "/campcaster";
}
header("LOCATION: $base/ui_browser.php");
?>