mirror of
https://github.com/Circlepuller/Tinyboard.git
synced 2025-01-17 21:39:27 +01:00
Use PNG extension for all thumbnails.
This commit is contained in:
parent
ef39c6ab47
commit
80099c87e6
@ -73,7 +73,7 @@
|
||||
$post['extension'] = substr($post['filename'], strrpos($post['filename'], '.') + 1);
|
||||
$post['file_id'] = rand(0, 1000000000);
|
||||
$post['file'] = DIR_IMG . $post['file_id'] . '.' . $post['extension'];
|
||||
$post['thumb'] = DIR_THUMB . $post['file_id'] . '.jpg';
|
||||
$post['thumb'] = DIR_THUMB . $post['file_id'] . '.png';
|
||||
if(!in_array($post['extension'], $allowed_ext)) error(ERROR_FILEEXT);
|
||||
}
|
||||
|
||||
@ -190,4 +190,4 @@
|
||||
|
||||
header('Location: ' . ROOT . FILE_INDEX, true, 302);
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user