From 38c9ac65d8fb110c7977638b84775c3f064b8378 Mon Sep 17 00:00:00 2001 From: ctrlcctrlv Date: Fri, 9 Aug 2013 19:40:49 +0000 Subject: [PATCH] Critical bug: could not move threads/posts with spoiler images, resulted in I/O error Conflicts: inc/mod/pages.php --- inc/mod/pages.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 706d747d..10205a11 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1053,7 +1053,8 @@ function mod_move($originBoard, $postID) { if ($post['has_file']) { // copy image $clone($file_src, sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file']); - $clone($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']); + if (!in_array($post['thumb'], array('spoiler', 'deleted'))) + $clone($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']); } // go back to the original board to fetch replies