Ability to customize filenames, replacing the standard UNIX timestamp + random

This commit is contained in:
Savetheinternet 2011-11-19 00:22:48 +11:00
parent f25365dec5
commit 0279cfd3fb
2 changed files with 9 additions and 2 deletions

View file

@ -311,7 +311,10 @@
if($post['has_file']) {
$post['extension'] = strtolower(substr($post['filename'], strrpos($post['filename'], '.') + 1));
$post['file_id'] = time() . rand(100, 999);
if(isset($config['filename_func']))
$post['file_id'] = $config['filename_func']($post);
else
$post['file_id'] = time() . rand(100, 999);
$post['file'] = $board['dir'] . $config['dir']['img'] . $post['file_id'] . '.' . $post['extension'];
$post['thumb'] = $board['dir'] . $config['dir']['thumb'] . $post['file_id'] . '.' . ($config['thumb_ext'] ? $config['thumb_ext'] : $post['extension']);
}