Bug #24528 » workspace_problem_patch.patch
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;
|
||
}
|
||
}
|
||
}
|
||
- « Previous
- 1
- 2
- Next »