Delete images properly on error
This commit is contained in:
parent
73746b7c8d
commit
13ef38d7b7
@ -1122,7 +1122,14 @@
|
||||
return $res;
|
||||
}
|
||||
|
||||
function undoImage($post) {
|
||||
unlink($post['file']);
|
||||
unlink($post['thumb']);
|
||||
}
|
||||
|
||||
function createimage($type, $source_pic) {
|
||||
global $config;
|
||||
|
||||
$image = false;
|
||||
switch($type) {
|
||||
case 'jpg':
|
||||
|
5
post.php
5
post.php
@ -247,12 +247,12 @@
|
||||
|
||||
// Check if the image is valid
|
||||
if($post['width'] < 1 || $post['height'] < 1) {
|
||||
unlink($post['file']);
|
||||
undoImage($post);
|
||||
error($config['error']['invalidimg']);
|
||||
}
|
||||
|
||||
if($post['width'] > $config['max_width'] || $post['height'] > $config['max_height']) {
|
||||
unlink($post['file']);
|
||||
undoImage($post);
|
||||
error($config['error']['maxsize']);
|
||||
}
|
||||
|
||||
@ -269,6 +269,7 @@
|
||||
}
|
||||
|
||||
if(!($mod && $mod['type'] >= $config['mod']['postunoriginal']) && $config['robot_enable'] && checkRobot($post['body_nomarkup'])) {
|
||||
undoImage($post);
|
||||
if($config['robot_mute']) {
|
||||
error(sprintf($config['error']['muted'], mute()));
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user