update var names
forgot to change var names, oopsies
This commit is contained in:
parent
778085118c
commit
b349c51aa2
1 changed files with 4 additions and 4 deletions
|
@ -22,8 +22,8 @@ function generateName($file)
|
||||||
global $doubledots;
|
global $doubledots;
|
||||||
|
|
||||||
// We start at N retries, and --N until we give up
|
// We start at N retries, and --N until we give up
|
||||||
$tries = POMF_FILES_RETRIES;
|
$tries = UGUU_FILES_RETRIES;
|
||||||
$length = POMF_FILES_LENGTH;
|
$length = UGUU_FILES_LENGTH;
|
||||||
//Get EXT
|
//Get EXT
|
||||||
$ext = pathinfo($file->name, PATHINFO_EXTENSION);
|
$ext = pathinfo($file->name, PATHINFO_EXTENSION);
|
||||||
//Get mime
|
//Get mime
|
||||||
|
@ -121,7 +121,7 @@ function uploadFile($file)
|
||||||
$ip = $_SERVER['REMOTE_ADDR'];
|
$ip = $_SERVER['REMOTE_ADDR'];
|
||||||
|
|
||||||
// Store the file's full file path in memory
|
// 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
|
// Attempt to move it to the static directory
|
||||||
if (!move_uploaded_file($file->tempfile, $uploadFile)) {
|
if (!move_uploaded_file($file->tempfile, $uploadFile)) {
|
||||||
|
@ -159,7 +159,7 @@ function uploadFile($file)
|
||||||
return array(
|
return array(
|
||||||
'hash' => $file->getSha1(),
|
'hash' => $file->getSha1(),
|
||||||
'name' => $file->name,
|
'name' => $file->name,
|
||||||
'url' => POMF_URL.rawurlencode($newname),
|
'url' => UGUU_URL.rawurlencode($newname),
|
||||||
'size' => $file->size,
|
'size' => $file->size,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue