1
0
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:
Rouji 2017-04-04 00:16:23 +02:00
parent b37a6c4ae4
commit 5e0af0eb61

View File

@ -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));