diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-05-27 23:56:53 -0700 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-05-27 23:56:53 -0700 |
commit | 048138970237ac1a0784ac779bc74b73b04d49be (patch) | |
tree | 33494cb4319f0ee85ab5f6edae44206ae72d1411 /index.php | |
parent | 1646ec830578457b1b1db19ddf0388f14ca66710 (diff) | |
download | pathery-048138970237ac1a0784ac779bc74b73b04d49be.tar.xz |
Netbeans meta and minor changes.
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");
|