1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

uncamel a case

This commit is contained in:
Rouji 2020-07-12 13:01:39 +02:00
parent c45cde12f7
commit 547e13d591

View File

@ -83,9 +83,9 @@ function get_ext($path)
// files are stored wit a randomised name, but with their original extension // files are stored wit a randomised name, but with their original extension
// //
// $name: original filename // $name: original filename
// $tmpFile: temporary path of uploaded file // $tmpfile: temporary path of uploaded file
// $formatted: set to true to display formatted message instead of bare link // $formatted: set to true to display formatted message instead of bare link
function store_file($name, $tmpFile, $formatted = false) function store_file($name, $tmpfile, $formatted = false)
{ {
global $STORE_PATH; global $STORE_PATH;
global $ID_LENGTH; global $ID_LENGTH;
@ -102,7 +102,7 @@ function store_file($name, $tmpFile, $formatted = false)
} }
//check file size //check file size
$size = filesize($tmpFile); $size = filesize($tmpfile);
if ($size > $MAX_FILESIZE * 1024 * 1024) if ($size > $MAX_FILESIZE * 1024 * 1024)
{ {
header("HTTP/1.0 413 Payload Too Large"); header("HTTP/1.0 413 Payload Too Large");
@ -131,7 +131,7 @@ function store_file($name, $tmpFile, $formatted = false)
} }
} }
$res = move_uploaded_file($tmpFile, $target_file); $res = move_uploaded_file($tmpfile, $target_file);
if ($res) if ($res)
{ {
//scan file using clam //scan file using clam
@ -165,7 +165,7 @@ function store_file($name, $tmpFile, $formatted = false)
implode("\t", array( implode("\t", array(
date('c'), date('c'),
$_SERVER['REMOTE_ADDR'], $_SERVER['REMOTE_ADDR'],
filesize($tmpFile), filesize($tmpfile),
escapeshellarg($name), escapeshellarg($name),
$basename $basename
)) . "\n", )) . "\n",