Bug #85182 » patch.diff
typo3/sysext/rte_ckeditor/Classes/Controller/BrowseLinksController.php | ||
---|---|---|
$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();
|
||
}
|
||