Browse Source

Fixed undoImage()

pull/40/head
Savetheinternet 13 years ago
parent
commit
6c4f3b5faa
  1. 5
      inc/functions.php

5
inc/functions.php

@ -1144,8 +1144,9 @@
}
function undoImage($post) {
unlink($post['file']);
unlink($post['thumb']);
if($post['has_file'])
@unlink($post['file']);
@unlink($post['thumb']);
}
function createimage($type, $source_pic) {

Loading…
Cancel
Save