Project

General

Profile

Bug #50929 ยป patch1.diff

Jan Spisiak, 2013-08-08 16:27

View differences:

typo3/sysext/recordlist/Classes/Browser/ElementBrowser.php
$this->thisConfig = \TYPO3\CMS\Backend\Utility\BackendUtility::RTEsetup($RTEsetup['properties'], $RTEtsConfigParts[0], $RTEtsConfigParts[2], $RTEtsConfigParts[4]);
}
// Initializing the target value (RTE)
$this->setTarget = $this->curUrlArray['target'] != '-' ? rawurlencode($this->curUrlArray['target']) : '';
$this->setTarget = $this->curUrlArray['target'] != '-' ? $this->curUrlArray['target'] : '';
if ($this->thisConfig['defaultLinkTarget'] && !isset($this->curUrlArray['target'])) {
$this->setTarget = $this->thisConfig['defaultLinkTarget'];
}
// Initializing the class value (RTE)
$this->setClass = $this->curUrlArray['class'] != '-' ? rawurlencode($this->curUrlArray['class']) : '';
$this->setClass = $this->curUrlArray['class'] != '-' ? $this->curUrlArray['class'] : '';
// Initializing the title value (RTE)
$this->setTitle = $this->curUrlArray['title'] != '-' ? rawurlencode($this->curUrlArray['title']) : '';
$this->setTitle = $this->curUrlArray['title'] != '-' ? $this->curUrlArray['title'] : '';
// Initializing the params value
$this->setParams = $this->curUrlArray['params'] != '-' ? rawurlencode($this->curUrlArray['params']) : '';
$this->setParams = $this->curUrlArray['params'] != '-' ? $this->curUrlArray['params'] : '';
// BEGIN accumulation of header JavaScript:
$JScode = '
// This JavaScript is primarily for RTE/Link. jumpToUrl is used in the other cases as well...
    (1-1/1)