psychoticwolf%carolina.rr.com 1136d9dd78 Developer CP bustage fix.
git-svn-id: svn://10.0.0.236/trunk@163355 18797224-902f-48f8-a5cc-f745e15eee43
2004-10-07 07:16:07 +00:00

11 lines
321 B
PHP
Executable File

<?php
//session_name('sid');
session_name();
session_start();
if ($_SESSION["logoncheck"] !=="YES" && strpos($_SERVER["SCRIPT_NAME"],"login.php")===false && strpos($_SERVER["SCRIPT_NAME"],"index.php")===false) {
$return_path="developers/index.php";
header("Location: http://$_SERVER[HTTP_HOST]/$return_path");
exit;
}
?>