Browse Source

< should be <= in this case

pull/40/head
Savetheinternet 13 years ago
parent
commit
4c6c5b906e
  1. 2
      post.php

2
post.php

@ -416,7 +416,7 @@
if($config['minimum_copy_resize'] && $post['width'] < $config['thumb_width'] && $post['height'] < $config['thumb_height']) { if($config['minimum_copy_resize'] && $post['width'] <= $config['thumb_width'] && $post['height'] <= $config['thumb_height']) {
// Copy, because there's nothing to resize // Copy, because there's nothing to resize
copy($post['file'], $post['thumb']); copy($post['file'], $post['thumb']);

Loading…
Cancel
Save