Browse Source

Use PNG extension for all thumbnails.

pull/40/head
Paul Merrill 14 years ago
parent
commit
80099c87e6
  1. 4
      index.php

4
index.php

@ -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…
Cancel
Save