mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Construct path to the version file from the current directory and filename. Fixes #22450
This commit is contained in:
parent
3ff2bec5fa
commit
d82df7e490
1 changed files with 6 additions and 4 deletions
|
|
@ -531,13 +531,15 @@ class Storage {
|
|||
$files = $view->getDirectoryContent($dir);
|
||||
|
||||
foreach ($files as $file) {
|
||||
$fileData = $file->getData();
|
||||
$filePath = $dir . '/' . $fileData['name'];
|
||||
if ($file['type'] === 'dir') {
|
||||
array_push($dirs, $file['path']);
|
||||
array_push($dirs, $filePath);
|
||||
} else {
|
||||
$versionsBegin = strrpos($file['path'], '.v');
|
||||
$versionsBegin = strrpos($filePath, '.v');
|
||||
$relPathStart = strlen(self::VERSIONS_ROOT);
|
||||
$version = substr($file['path'], $versionsBegin + 2);
|
||||
$relpath = substr($file['path'], $relPathStart, $versionsBegin - $relPathStart);
|
||||
$version = substr($filePath, $versionsBegin + 2);
|
||||
$relpath = substr($filePath, $relPathStart, $versionsBegin - $relPathStart);
|
||||
$key = $version . '#' . $relpath;
|
||||
$versions[$key] = array('path' => $relpath, 'timestamp' => $version);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue