Compare commits

...

1 Commits

  1. 7
      inc/mod/pages.php

7
inc/mod/pages.php

@ -1340,8 +1340,8 @@ function mod_move($originBoard, $postID) {
if ($targetBoard === $originBoard)
error(_('Target and source board are the same.'));
// copy() if leaving a shadow thread behind; else, rename().
$clone = $shadow ? 'copy' : 'rename';
// Fake copy if leaving a shadow thread behind; else, rename().
$clone = $shadow ? 'link' : 'rename';
// indicate that the post is a thread
$post['op'] = true;
@ -1634,7 +1634,8 @@ function mod_merge($originBoard, $postID) {
$op = $post;
$op['id'] = $newID;
$clone = $shadow ? 'copy' : 'rename';
// Fake copy if leaving a shadow thread behind; else, rename().
$clone = $shadow ? 'link' : 'rename';
if ($post['has_file']) {
// copy image

Loading…
Cancel
Save