Project

General

Profile

Bug #20941 » class.tslib_content.php.patch

Administrator Admin, 2009-08-27 13:59

View differences:

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;
}
}
(1-1/4)