Skip to content
Snippets Groups Projects
Commit 15e27502 authored by Nicole Cordes's avatar Nicole Cordes Committed by Christian Kuhn
Browse files

[BUGFIX] Always convert webroot to unix styled path

This patch adds the conversion from Windows styled to unix styled path.

Resolves: #58559
Releases: 6.2
Change-Id: I2b5b431fe60531ab1ad1c75bf9fd7749414c4df2
Reviewed-on: https://review.typo3.org/29893
Reviewed-by: Markus Klein
Tested-by: Markus Klein
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
parent af0db057
No related merge requests found
......@@ -67,6 +67,7 @@ if (getenv('TYPO3_PATH_WEB')) {
} else {
$webRoot = getcwd() . '/';
}
$webRoot = strtr($webRoot, '\\', '/');
/**
* Define basic TYPO3 constants
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment