From 379eb7d553bca9617b9ae08cf2cb7716f438ff7a 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 --- inc/mod/pages.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 3ab52870..fb759357 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -1054,7 +1054,9 @@ function mod_move_reply($originBoard, $postID) { if ($post['has_file']) { // move the image rename($file_src, sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $post['file']); - rename($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']); + if ($post['thumb'] != 'spoiler') { //trying to move/copy the spoiler thumb raises an error + rename($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']); + } } buildIndex(); @@ -1146,7 +1148,9 @@ 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 ($post['thumb'] != 'spoiler') { //trying to move/copy the spoiler thumb raises an error + $clone($file_thumb, sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $post['thumb']); + } } // go back to the original board to fetch replies