From 211c1acec935357620aa9009c7ec3f23f1af368d Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 2 May 2014 19:32:18 +0200 Subject: [PATCH] actually fix this bug --- inc/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 6963f9e6..a3fd288d 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -2041,8 +2041,8 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti if (!isset($thread)) { $thread = new Thread($post, $mod ? '?/' : $config['root'], $mod); } else { - if ($post['file']) - $num_images++; + if ($post['files']) + $num_images += $post['num_files']; $thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod)); } @@ -2075,7 +2075,7 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti if ($index == count($allPosts)-count($thread->posts)) break; if ($post->files) - $thread->omitted_images += count(json_decode($post->files)); + $thread->omitted_images += $post->num_files; } }