X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/dc4e2ece81a289c5d0969b411048736af735663a..328280882da0834d8dfce9af98bac69ba37610c9:/index.php?ds=inline diff --git a/index.php b/index.php index eb8d577..a32af36 100644 --- a/index.php +++ b/index.php @@ -18,11 +18,18 @@ * 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); @@ -30,7 +37,6 @@ $writable = is_writable (VAR_FILES) && is_writable (VAR_LINKS); $res = array (); if ($writable && isset ($_POST['jirafeau'])) { - $key = $_POST['key']; $time = time (); @@ -61,7 +67,7 @@ if ($writable && isset ($_POST['jirafeau'])) $key, $time, $cfg, $_SERVER['REMOTE_ADDR']); } -require (JIRAFEAU_ROOT.'lib/template/header.php'); +require (JIRAFEAU_ROOT . 'lib/template/header.php'); /* Checking for errors. */ if (!is_writable (VAR_FILES)) @@ -100,20 +106,20 @@ if (!has_error () && !empty ($res)) } echo '
'.NL; - echo '

'._('File uploaded! Copy the following URL to get it:'). - '
' . NL; + echo '

' . _('File uploaded! Copy the following URL to get it') . + ':
' . NL; echo ''.$link.'' . NL; if ($time != JIRAFEAU_INFINITY) { - echo '
'._('This file is valid until the following date:') . - '
' . strftime ('%c', $time) . ''; + echo '
' . _('This file is valid until the following date') . + ':
' . strftime ('%c', $time) . ''; } echo '

'; echo '
' . NL; - echo '

' . _('Keep the following URL to delete it:') . '
' . NL; + echo '

' . _('Keep the following URL to delete it at any moment') . ':
' . NL; echo '' . $delete_link . '' . NL; echo '

'; } @@ -132,19 +138,19 @@ if (!has_error () && $writable)