X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/ef06cd797d4f91e83b1e3e69d815ff3e6c773ace..6165f1ef9bf8abf6d07caff88f14a36f368832c6:/index.php?ds=sidebyside diff --git a/index.php b/index.php index 8a31665..912b1ef 100644 --- a/index.php +++ b/index.php @@ -20,10 +20,10 @@ define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/'); define ('DEBUG', true); -require (JIRAFEAU_ROOT . 'lib/lang.php'); require (JIRAFEAU_ROOT . 'lib/config.php'); require (JIRAFEAU_ROOT . 'lib/settings.php'); require (JIRAFEAU_ROOT . 'lib/functions.php'); +require (JIRAFEAU_ROOT . 'lib/lang.php'); /* check if the destination dirs are writable */ $writable = is_writable (VAR_FILES) && is_writable (VAR_LINKS); @@ -63,13 +63,13 @@ if ($writable && isset ($_POST['jirafeau'])) } if (file_exists (JIRAFEAU_ROOT . 'install.php') - && !file_exists (JIRAFEAU_ROOT.'lib/config.local.php')) + && !file_exists (JIRAFEAU_ROOT . 'lib/config.local.php')) { header('Location: install.php'); exit; } -require (JIRAFEAU_ROOT.'lib/template/header.php'); +require (JIRAFEAU_ROOT . 'lib/template/header.php'); /* Checking for errors. */ if (!is_writable (VAR_FILES)) @@ -108,20 +108,20 @@ if (!has_error () && !empty ($res)) } echo '
'; echo ' '; } @@ -140,19 +140,19 @@ if (!has_error () && $writable)