8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426bf96 commit acbafe8Copy full SHA for acbafe8
src/Symfony/Component/DependencyInjection/Loader/XmlFileLoader.php
@@ -614,6 +614,8 @@ public function validateSchema(\DOMDocument $dom)
614
array_shift($parts);
615
$locationstart = 'phar:///';
616
}
617
+ } elseif ('\\' === \DIRECTORY_SEPARATOR && 0 === strpos($location, '\\\\')) {
618
+ $locationstart = '';
619
620
$drive = '\\' === \DIRECTORY_SEPARATOR ? array_shift($parts).'/' : '';
621
$location = $locationstart.$drive.implode('/', array_map('rawurlencode', $parts));
0 commit comments