Feature #16593 » class.tslib_content.php.patch
class.tslib_content.php (working copy) | ||
---|---|---|
}
|
||
// If no domain records are defined, use current domain:
|
||
if ($targetDomain === '' && $conf['forceAbsoluteUrl'] ||
|
||
$absoluteUrlScheme !== parse_url(t3lib_div::getIndpEnv('TYPO3_REQUEST_URL'), PHP_URL_SCHEME)) {
|
||
$targetDomain = $currentDomain;
|
||
//additional brackets for correcting operator predecence && -> ||; otherwise the currentdomain is always taken if the url_scheme differs
|
||
if ($targetDomain === '' && ($conf['forceAbsoluteUrl'] ||
|
||
$absoluteUrlScheme !== parse_url(t3lib_div::getIndpEnv('TYPO3_REQUEST_URL'), PHP_URL_SCHEME))) {
|
||
$targetDomain = $currentDomain;
|
||
}
|
||
}
|
||