diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,10 @@ <?PHP
ob_start("ob_gzhandler");
-//TODO: !! Make sure updating.php exists, and that the images in images/btns/ are uploaded.
+//Start session
+if (!session_id()) session_start();
+//session_regenerate_id();
+
//Show updating page?
//$showUpdatePage = true;
$showUpdatePage = false;
@@ -11,7 +14,6 @@ if ($showUpdatePage AND $_GET['cu'] !== "true") { exit;
}
-//globe will start the session.
include_once("globe.php");
include_once("./includes/header.php");
|