Project

General

Profile

Bug #14788 » class.tslib_content.php.patch

Administrator Admin, 2005-06-02 13:04

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/2)