]> git.p6c8.net - jirafeau_project.git/blobdiff - index.php
Fix php 5.3 support and prepare languages
[jirafeau_project.git] / index.php
index 4a8402509777033b4491eaf7c6a678d6b9c60f95..8a3166541bd34a3ee060da5981355fe7525e82f2 100644 (file)
--- a/index.php
+++ b/index.php
@@ -20,6 +20,7 @@
 define ('JIRAFEAU_ROOT', dirname (__FILE__) . '/');
 define ('DEBUG', true);
 
 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/config.php');
 require (JIRAFEAU_ROOT . 'lib/settings.php');
 require (JIRAFEAU_ROOT . 'lib/functions.php');
@@ -61,6 +62,13 @@ if ($writable && isset ($_POST['jirafeau']))
                          $key, $time, $cfg, $_SERVER['REMOTE_ADDR']);
 }
 
                          $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. */
 require (JIRAFEAU_ROOT.'lib/template/header.php');
 
 /* Checking for errors. */
@@ -141,7 +149,7 @@ if (!has_error () && $writable)
         "checkbox" name =
         "one_time_download" /><?php echo _('One time download');
     ?></label></p> <p><label for = "input_key"
         "checkbox" name =
         "one_time_download" /><?php echo _('One time download');
     ?></label></p> <p><label for = "input_key"
-       ><?php echo _('File key:');
+       ><?php echo _('Password:');
     ?></label> <input type = "text" name = "key" id = "input_key" /></p>
         <p><label for = "select_time"
        ><?php echo _('Time limit:');
     ?></label> <input type = "text" name = "key" id = "input_key" /></p>
         <p><label for = "select_time"
        ><?php echo _('Time limit:');

patrick-canterino.de