From c084eb33b5f925fd58be09706cac4af921ba0d38 Mon Sep 17 00:00:00 2001 From: Christer Vindberg <cvi@systime.dk> Date: Thu, 9 Feb 2017 12:43:54 +0100 Subject: [PATCH] [FOLLOWUP][FEATURE] Streamline Fluid Styled Content and CSS Styled Content Removed use of undefined variable. Resolves: #79622 Related: #79622 Releases: master Change-Id: I91935ec80e2ff2963dce5b6bbccbaaa52cd186c3 Reviewed-on: https://review.typo3.org/51607 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Mona Muzaffar <mona.muzaffar@gmx.de> Reviewed-by: Thomas Hohn <thomas@hohn.dk> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../Classes/Controller/CssStyledContentController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/css_styled_content/Classes/Controller/CssStyledContentController.php b/typo3/sysext/css_styled_content/Classes/Controller/CssStyledContentController.php index 8ab3fa2c3024..06b0b54f301b 100644 --- a/typo3/sysext/css_styled_content/Classes/Controller/CssStyledContentController.php +++ b/typo3/sysext/css_styled_content/Classes/Controller/CssStyledContentController.php @@ -137,7 +137,7 @@ class CssStyledContentController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlug $newCells[$a] = '<td' . $accessibleHeader . '>' . $this->cObj->stdWrap($cells[$a], $conf['innerStdWrap.']) . '</td>'; } } - $rows[$k] = '<tr' . $rowAttribs . '>' . implode('', $newCells) . '</tr>'; + $rows[$k] = '<tr>' . implode('', $newCells) . '</tr>'; } $addTbody = 0; $tableContents = ''; -- GitLab