From 371d87e840d38d6b8ef880a52b119ff996ae1b65 Mon Sep 17 00:00:00 2001 From: Arvo Huru Date: Thu, 15 Jun 2017 08:26:07 +0200 Subject: [PATCH] Bugfix - Small bugfix to Shadow Delete --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 56a9399c..c9fc2185 100755 --- a/inc/functions.php +++ b/inc/functions.php @@ -2702,7 +2702,7 @@ function buildThread($id, $return = false, $mod = false, $shadow = false) { if (!isset($thread)) { $thread = new Thread($post, $mod ? '?/' : $config['root'], $mod); } else { - $post['no_shadow_restore'] = true; + $post['no_shadow_restore'] = false; $thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod)); } }