Project

General

Profile

Bug #24528 » workspace_problem_patch.patch

Administrator Admin, 2011-01-23 23:30

View differences:

t3lib/class.t3lib_befunc.php (Arbeitskopie)
if (count($rootLine) > 0) {
$urlParts = parse_url($domain);
if (self::getDomainStartPage($urlParts['host'], $urlParts['path'])) {
$protocol = t3lib_div::getIndpEnv('TYPO3_SSL') ? 'https://' : 'http://';
$domain = $protocol . self::firstDomainRecord($rootLine);
$domainRecord = self::firstDomainRecord($rootLine);
if ($domainRecord !== NULL) {
$protocol = t3lib_div::getIndpEnv('TYPO3_SSL') ? 'https://' : 'http://';
$domain = $protocol . $domainRecord;
}
}
}
(2-2/2)