diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,18 @@ <?PHP
ob_start("ob_gzhandler");
+
+//$showUpdatePage = true;
+$showUpdatePage = false;
+if ($showUpdatePage AND $_GET['cu'] !== "true") {
+ require("updating.php");
+ exit;
+}
+
+include_once ('globe.php');
+include_once ('./includes/header.php');
+include_once ('./includes/sqlEmbedded.php');
+
+
//Start session
if (!session_id()) session_start();
//session_regenerate_id();
|