Project

General

Profile

Bug #61749 ยป SystemEnvironmentBuilder.patch

Alexander Bohndorf, 2014-09-19 18:04

View differences:

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 {
    (1-1/1)