]> jfr.im git - uguu.git/blobdiff - static/php/upload.php
Update README.md
[uguu.git] / static / php / upload.php
index 877e5ef1f64b9feb5faa72268b2759ae159728c4..879d68dbc1410e98f475c71c45ac3286a14c7bc2 100644 (file)
@@ -17,8 +17,8 @@ function generateName($file)
     global $doubledots;
 
     // We start at N retries, and --N until we give up
-    $tries = POMF_FILES_RETRIES;
-    $length = POMF_FILES_LENGTH;
+    $tries = UGUU_FILES_RETRIES;
+    $length = UGUU_FILES_LENGTH;
     //Get EXT
     $ext = pathinfo($file->name, PATHINFO_EXTENSION);
     //Get mime
@@ -99,7 +99,7 @@ function uploadFile($file)
     $newname = generateName($file);
 
     // Store the file's full file path in memory
-    $uploadFile = POMF_FILES_ROOT.$newname;
+    $uploadFile = UGUU_FILES_ROOT.$newname;
 
     // Attempt to move it to the static directory
     if (!move_uploaded_file($file->tempfile, $uploadFile)) {
@@ -131,7 +131,7 @@ function uploadFile($file)
     return [
         'hash' => $file->getSha1(),
         'name' => $file->name,
-        'url' => POMF_URL.rawurlencode($newname),
+        'url' => UGUU_URL.rawurlencode($newname),
         'size' => $file->size,
     ];
 }