Use PNG extension for all thumbnails.

This commit is contained in:
Paul Merrill 2010-11-02 05:52:37 -07:00
parent ef39c6ab47
commit 80099c87e6

View File

@ -73,7 +73,7 @@
$post['extension'] = substr($post['filename'], strrpos($post['filename'], '.') + 1); $post['extension'] = substr($post['filename'], strrpos($post['filename'], '.') + 1);
$post['file_id'] = rand(0, 1000000000); $post['file_id'] = rand(0, 1000000000);
$post['file'] = DIR_IMG . $post['file_id'] . '.' . $post['extension']; $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); if(!in_array($post['extension'], $allowed_ext)) error(ERROR_FILEEXT);
} }
@ -190,4 +190,4 @@
header('Location: ' . ROOT . FILE_INDEX, true, 302); header('Location: ' . ROOT . FILE_INDEX, true, 302);
} }
?> ?>