mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-28 01:10:51 +01:00
Dirty quick fix to allow moderation to move threads with deleted files
This commit is contained in:
parent
18aed77ecc
commit
64cf4b11ee
@ -1314,7 +1314,9 @@ function mod_move($originBoard, $postID) {
|
|||||||
$post['has_file'] = true;
|
$post['has_file'] = true;
|
||||||
foreach ($post['files'] as $i => &$file) {
|
foreach ($post['files'] as $i => &$file) {
|
||||||
$file['file_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file'];
|
$file['file_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['img'] . $file['file'];
|
||||||
$file['thumb_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb'];
|
|
||||||
|
if (isset($file['thumb']))
|
||||||
|
$file['thumb_path'] = sprintf($config['board_path'], $board['uri']) . $config['dir']['thumb'] . $file['thumb'];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$post['has_file'] = false;
|
$post['has_file'] = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user