]> git.p6c8.net - jirafeau_project.git/blobdiff - index.php
small verification
[jirafeau_project.git] / index.php
index ae25e7b6c4cef2a42c912a79c9cca17b9558a79b..9fb43aa3181e0703080f5727f9157f82256b9340 100644 (file)
--- a/index.php
+++ b/index.php
@@ -35,9 +35,13 @@ if (file_exists (JIRAFEAU_ROOT . 'install.php')
 $writable = is_writable (VAR_FILES) && is_writable (VAR_LINKS);
 
 $res = array ();
-if ($writable && isset ($_POST['jirafeau']))
+if ($writable && isset ($_POST['jirafeau']) && isset ($_FILES['file'])
+    && isset ($_POST['time']))
 {
-    $key = $_POST['key'];
+    if (!isset ($_POST['key']))
+        $key = '';
+    else    
+        $key = $_POST['key'];
 
     $time = time ();
     switch ($_POST['time'])
@@ -144,6 +148,7 @@ if (!has_error () && $writable)
     <input type = "submit" id='send' value ="<?php echo t('Send'); ?>"
     onclick="
         document.getElementById('send').value='<?php echo t ('Uploading ...'); ?>';
+        document.getElementById('send').submit ();
         document.getElementById('send').disabled='true';
     "/>
     </p><hr /><div id = "moreoptions"> <p><label><input type =

patrick-canterino.de