From 9416587d40452b385f46d61c6479fd6b3f6af4d8 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 2 May 2014 18:58:21 +0200 Subject: [PATCH] fix a bug with multiple images; thanks to saiko of tahta.ch for reporting it --- inc/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/functions.php b/inc/functions.php index 041e3733..6963f9e6 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -2074,8 +2074,8 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti foreach ($allPosts as $index => $post) { if ($index == count($allPosts)-count($thread->posts)) break; - if ($post->file) - $thread->omitted_images++; + if ($post->files) + $thread->omitted_images += count(json_decode($post->files)); } }