File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1549,7 +1549,9 @@ protected function generateTable(
15491549 $ return .= '<td '
15501550 . ($ itemValue ['valign ' ] !== '' ? ' valign=" ' . $ itemValue ['valign ' ] . '" ' : '' )
15511551 . ($ itemValue ['tl_class ' ] !== '' ? ' class=" ' . $ itemValue ['tl_class ' ] . '" ' : '' )
1552- . ($ itemValue ['wrapper_style ' ] !== '' ? ' style=" ' . $ this ->cspUnsafeInlineStyle ($ itemValue ['wrapper_style ' ]) . '" ' : '' )
1552+ . ($ itemValue ['wrapper_style ' ] !== ''
1553+ ? ' style=" ' . $ this ->cspUnsafeInlineStyle ($ itemValue ['wrapper_style ' ]) . '" '
1554+ : '' )
15531555 . '> '
15541556 . $ itemValue ['entry ' ]
15551557 . '</td> ' ;
@@ -1714,7 +1716,8 @@ protected function generateDiv(
17141716 ? ' class=" ' . $ itemValue ['tl_class ' ] . '" '
17151717 : '' )
17161718 . ($ itemValue ['wrapper_style ' ] !== ''
1717- ? ' style=" ' . $ this ->cspUnsafeInlineStyle ($ itemValue ['wrapper_style ' ]) . '" '
1719+ ? ' style=" ' . $ this ->cspUnsafeInlineStyle ($ itemValue ['wrapper_style ' ])
1720+ . '" '
17181721 : '' )
17191722 . '> '
17201723 . $ itemValue ['entry ' ]
You can’t perform that action at this time.
0 commit comments