Skip to content

Commit

Permalink
Update Foxml.php
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-vessey authored Nov 20, 2024
1 parent f10486e commit ef57be6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StreamWrapper/Foxml.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ protected function getLocalPath($uri = NULL) {
$realpath = $this->fileSystem->realpath($path);
if (!$realpath) {

// This file does not yet exist.
$realpath = $this->fileSystem->realpath(dirname($path)) . '/' .
// This file does not yet exist, or $path references something remote.
$realpath = $this->fileSystem->dirname($path) . '/' .
$this->fileSystem->basename($path);
}

Expand Down

0 comments on commit ef57be6

Please sign in to comment.