diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-16 15:59:53 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-16 15:59:53 +0000 |
commit | 3b918a234e3917080982581d200e5baab2a5bd79 (patch) | |
tree | ec94190133563bcc39daa8e03285d57686ddb0fb /phpBB/includes | |
parent | d7b4e9e863d32b9c557ec5b971e6aa1b1e9d2c3c (diff) | |
download | forums-3b918a234e3917080982581d200e5baab2a5bd79.tar forums-3b918a234e3917080982581d200e5baab2a5bd79.tar.gz forums-3b918a234e3917080982581d200e5baab2a5bd79.tar.bz2 forums-3b918a234e3917080982581d200e5baab2a5bd79.tar.xz forums-3b918a234e3917080982581d200e5baab2a5bd79.zip |
Fix download count increments for image attachments without corresponding thumbnails. (Bug #42505)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9373 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_content.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php index 268755ab44..21c595053f 100644 --- a/phpBB/includes/functions_content.php +++ b/phpBB/includes/functions_content.php @@ -950,6 +950,8 @@ function parse_attachments($forum_id, &$message, &$attachments, &$update_count, 'S_THUMBNAIL' => true, 'THUMB_IMAGE' => $thumbnail_link, ); + + $update_count[] = $attachment['attach_id']; break; // Windows Media Streams |