Bug #23682 ยป 15911_v1.patch
typo3/sysext/cms/tslib/class.tslib_content.php (working copy) | ||
---|---|---|
function locDataJU($jumpUrl, $conf) {
|
||
$fI = pathinfo($jumpUrl);
|
||
$mimetype = '';
|
||
$mimetypeValue = '';
|
||
if ($fI['extension']) {
|
||
$mimeTypes = t3lib_div::trimExplode(',', $conf['mimeTypes'], 1);
|
||
foreach ($mimeTypes as $v) {
|
typo3/sysext/cms/tslib/class.tslib_fe.php (working copy) | ||
---|---|---|
$hArr = array(
|
||
$this->jumpurl,
|
||
t3lib_div::_GP('locationData'),
|
||
(string)t3lib_div::_GP('mimeType'), // Need a type cast here because mimeType is optional!
|
||
$locationData,
|
||
(string)$mimeType, // Need a type cast here because mimeType is optional!
|
||
$this->TYPO3_CONF_VARS['SYS']['encryptionKey']
|
||
);
|
||
$calcJuHash=t3lib_div::shortMD5(serialize($hArr));
|