X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/6165f1ef9bf8abf6d07caff88f14a36f368832c6..5d665388224866c9a2f470c020b01cb70ca4a782:/index.php
diff --git a/index.php b/index.php
index 912b1ef..56a07b8 100644
--- a/index.php
+++ b/index.php
@@ -18,20 +18,25 @@
* along with this program. If not, see .
*/
define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
-define ('DEBUG', true);
require (JIRAFEAU_ROOT . 'lib/config.php');
require (JIRAFEAU_ROOT . 'lib/settings.php');
require (JIRAFEAU_ROOT . 'lib/functions.php');
require (JIRAFEAU_ROOT . 'lib/lang.php');
+if (file_exists (JIRAFEAU_ROOT . 'install.php')
+ && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php'))
+{
+ header('Location: install.php');
+ exit;
+}
+
/* check if the destination dirs are writable */
$writable = is_writable (VAR_FILES) && is_writable (VAR_LINKS);
$res = array ();
if ($writable && isset ($_POST['jirafeau']))
{
-
$key = $_POST['key'];
$time = time ();
@@ -62,13 +67,6 @@ if ($writable && isset ($_POST['jirafeau']))
$key, $time, $cfg, $_SERVER['REMOTE_ADDR']);
}
-if (file_exists (JIRAFEAU_ROOT . 'install.php')
- && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php'))
-{
- header('Location: install.php');
- exit;
-}
-
require (JIRAFEAU_ROOT . 'lib/template/header.php');
/* Checking for errors. */
@@ -148,7 +146,7 @@ if (!has_error () && $writable)