Bug #79687
closedMissing else statement in Css Styles Content causes images not to be outputted
100%
Description
In the new Css Styles Content there seems to be missing an else.
In TYPO3\CMS\CssStyledContent\Controller\CssStyledContentController::render_textpic
if $accessibilityMode
is set to false
and $separateRows
is also false
.
$allRows
is never added to $thisImages
.
Changing the code to:
if ($separateRows) { $thisImages .= $allRows; } else { $thisImages .= $this->cObj->stdWrap($allRows, $conf['noRowsStdWrap.']); }
like it was before, seems to fix it.
Updated by Gerrit Code Review almost 8 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/51583
Updated by Gerrit Code Review almost 8 years ago
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/51585
Updated by Gerrit Code Review almost 8 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/51585
Updated by Gerrit Code Review almost 8 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/51585
Updated by Christer V almost 8 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 1b8ae6984f16c01e6161b6ac849707b565fac955.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed