Code Duplication    Length = 3-3 lines in 2 locations

typo3/sysext/backend/Classes/View/PageLayoutView.php 2 locations

@@ 2127-2129 (lines=3) @@
2124
                    break;
2125
                case 'bullets':
2126
                case 'table':
2127
                    if ($row['bodytext']) {
2128
                        $out .= $this->linkEditContent($this->renderText($row['bodytext']), $row) . '<br />';
2129
                    }
2130
                    break;
2131
                case 'uploads':
2132
                    if ($row['media']) {
@@ 2204-2206 (lines=3) @@
2201
2202
                    if (isset($contentType)) {
2203
                        $out .= $this->linkEditContent('<strong>' . htmlspecialchars($contentType) . '</strong>', $row) . '<br />';
2204
                        if ($row['bodytext']) {
2205
                            $out .= $this->linkEditContent($this->renderText($row['bodytext']), $row) . '<br />';
2206
                        }
2207
                        if ($row['image']) {
2208
                            $out .= $this->linkEditContent($this->getThumbCodeUnlinked($row, 'tt_content', 'image'), $row) . '<br />';
2209
                        }