]> git.p6c8.net - jirafeau.git/blobdiff - lib/functions.js.php
[TASK] update docker image with PHP 8.1
[jirafeau.git] / lib / functions.js.php
index 14fad1da5fa98eadc2473c90cba890ad6161cba3..c1a81d8045c16bc2ecbb5c2346d3f2188404f676 100644 (file)
@@ -321,6 +321,11 @@ function add_time_string_to_date(d, time)
         d.setSeconds (d.getSeconds() + 604800);
         return true;
     }
+    if (time == 'fortnight')
+    {
+        d.setSeconds (d.getSeconds() + 1209600);
+        return true;
+    }
     if (time == 'month')
     {
                d.setSeconds (d.getSeconds() + 2592000);
@@ -591,14 +596,14 @@ function async_upload_end (code)
     req.send (form);
 }
 
-function upload (max_size)
+function upload (max_chunk_size)
 {
     var one_time_checkbox = document.getElementById('one_time_download');
     var one_time = one_time_checkbox !== null ? one_time_checkbox.checked : false;
     if (check_html5_file_api ())
     {
         async_upload_start (
-            max_size,
+            max_chunk_size,
             document.getElementById('file_select').files[0],
             document.getElementById('select_time').value,
             document.getElementById('input_key').value,

patrick-canterino.de