Bug #61749 ยป SystemEnvironmentBuilder.patch
typo3/sysext/core/Classes/Core/SystemEnvironmentBuilder.php (revision ) | ||
---|---|---|
// Find out if path is relative or not
|
||
$isRelativePath = FALSE;
|
||
if (TYPO3_OS === 'WIN') {
|
||
if (!preg_match('/^([A-Z]:)?\\\\/', $scriptPath)) {
|
||
if (!preg_match('/^([A-Z]:)?\\\\/i', $scriptPath)) {
|
||
$isRelativePath = TRUE;
|
||
}
|
||
} else {
|