Merge pull request #8042 from Novicaine/patch-1

Fix for UNC Windows paths
main
Jordi Boggiano 5 years ago committed by GitHub
commit f5e1a36f57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -440,7 +440,7 @@ class Filesystem
*/
public function isAbsolutePath($path)
{
return substr($path, 0, 1) === '/' || substr($path, 1, 1) === ':';
return substr($path, 0, 1) === '/' || substr($path, 1, 1) === ':' || substr($path, 0, 2) === '\\\\';
}
/**

Loading…
Cancel
Save