mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-03 16:09:33 +00:00
uncamel a case
This commit is contained in:
parent
c45cde12f7
commit
547e13d591
10
index.php
10
index.php
@ -83,9 +83,9 @@ function get_ext($path)
|
||||
// files are stored wit a randomised name, but with their original extension
|
||||
//
|
||||
// $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
|
||||
function store_file($name, $tmpFile, $formatted = false)
|
||||
function store_file($name, $tmpfile, $formatted = false)
|
||||
{
|
||||
global $STORE_PATH;
|
||||
global $ID_LENGTH;
|
||||
@ -102,7 +102,7 @@ function store_file($name, $tmpFile, $formatted = false)
|
||||
}
|
||||
|
||||
//check file size
|
||||
$size = filesize($tmpFile);
|
||||
$size = filesize($tmpfile);
|
||||
if ($size > $MAX_FILESIZE * 1024 * 1024)
|
||||
{
|
||||
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)
|
||||
{
|
||||
//scan file using clam
|
||||
@ -165,7 +165,7 @@ function store_file($name, $tmpFile, $formatted = false)
|
||||
implode("\t", array(
|
||||
date('c'),
|
||||
$_SERVER['REMOTE_ADDR'],
|
||||
filesize($tmpFile),
|
||||
filesize($tmpfile),
|
||||
escapeshellarg($name),
|
||||
$basename
|
||||
)) . "\n",
|
||||
|
Loading…
Reference in New Issue
Block a user