mirror of
https://github.com/getgrav/grav.git
synced 2026-04-14 08:37:39 +02:00
Minor fix
This commit is contained in:
@@ -239,7 +239,7 @@ class Filesystem implements FilesystemInterface
|
||||
|
||||
if (null !== $scheme) {
|
||||
$info['scheme'] = $scheme;
|
||||
$dirname = $info['dirname'] !== '.' ? $info['dirname'] : null;
|
||||
$dirname = isset($info['dirname']) && $info['dirname'] !== '.' ? $info['dirname'] : null;
|
||||
|
||||
if (null !== $dirname) {
|
||||
// In Windows dirname may be using backslashes, fix that.
|
||||
|
||||
Reference in New Issue
Block a user