mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-03 16:09:33 +00:00
omit trailing dot on files without extension
This commit is contained in:
parent
b37a6c4ae4
commit
5e0af0eb61
@ -120,7 +120,7 @@ function storeFile($name, $tmpFile, $formatted = false)
|
||||
do //generate filenames until we get one, that doesn't already exist
|
||||
{
|
||||
$id = rndStr($len++);
|
||||
$basename = $id . '.' . $ext;
|
||||
$basename = $id . (empty($ext) ? '' : '.' . $ext);
|
||||
$target_file = $STORE_PATH . $basename;
|
||||
} while (file_exists($target_file));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user