diff --git a/typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php b/typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php index a241977..302b3aa 100644 --- a/typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php +++ b/typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php @@ -177,15 +177,6 @@ class BrowseLinksController extends AbstractLinkBrowserController $this->currentLinkParts['params'] = '&' . $this->currentLinkParts['url']['parameters']; } } - - if (!empty($this->currentLinkParts['class'])) { - // Only keep last class value (others are automatically added again by required option) - // https://review.typo3.org/#/c/29643 - $currentClasses = GeneralUtility::trimExplode(' ', $this->currentLinkParts['class'], true); - if (count($currentClasses) > 1) { - $this->currentLinkParts['class'] = end($currentClasses); - } - } parent::initCurrentUrl(); }