From 48fc9b272dd4d445caf1977830ad0167ed7afb65 Mon Sep 17 00:00:00 2001
From: Torben Hansen <derhansen@gmail.com>
Date: Thu, 16 Jul 2015 10:12:07 +0200
Subject: [PATCH] [BUGFIX] Fix image descriptions for renderMethod = table

Image descriptions are not rendered correctly using
renderMethod = table, since only the description of the
last image is rendered when you have multiple images
in a content object..

This patch loads the current image file reference to the
contentObjectRenderer while looping through all images
in order to output the image descriptions.

Resolves: #68153
Releases: master, 6.2
Change-Id: I273fff90a5ab3a35e6422ca74b6d83b298b9b09d
Reviewed-on: http://review.typo3.org/41396
Reviewed-by: Susanne Moog <typo3@susannemoog.de>
Tested-by: Susanne Moog <typo3@susannemoog.de>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Tested-by: Wouter Wolters <typo3@wouterwolters.nl>
---
 .../Classes/ContentObject/ImageTextContentObject.php           | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/typo3/sysext/compatibility6/Classes/ContentObject/ImageTextContentObject.php b/typo3/sysext/compatibility6/Classes/ContentObject/ImageTextContentObject.php
index 4073764722f5..bc82fce61932 100644
--- a/typo3/sysext/compatibility6/Classes/ContentObject/ImageTextContentObject.php
+++ b/typo3/sysext/compatibility6/Classes/ContentObject/ImageTextContentObject.php
@@ -361,6 +361,9 @@ class ImageTextContentObject extends \TYPO3\CMS\Frontend\ContentObject\AbstractC
 						$GLOBALS['TSFE']->register['IMAGE_NUM'] = $imgIndex;
 						$imgIndex = $index + $a * $colCount_temp;
 						$GLOBALS['TSFE']->register['IMAGE_NUM_CURRENT'] = $imgIndex;
+						if (\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger($imgs[$imgIndex])) {
+							$this->setCurrentFileInContentObjectRenderer(intval($imgs[$imgIndex]));
+						}
 						if ($imgsTag[$imgIndex]) {
 							// Puts distance between the images IF "noRows" is set and this is the first iteration of the loop
 							if ($rowspacing && $noRows && $a) {
-- 
GitLab