Skip to content
Snippets Groups Projects
Commit db8fdd50 authored by Björn Schießle's avatar Björn Schießle
Browse files

added missing parameter documentation

parent f71794f0
No related branches found
No related tags found
No related merge requests found
...@@ -184,7 +184,7 @@ class Storage { ...@@ -184,7 +184,7 @@ class Storage {
} else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) { } else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) {
// create missing dirs if necessary // create missing dirs if necessary
self::createMissingDirectories($newpath, new \OC\Files\View('/'. $uidn)); self::createMissingDirectories($newpath, new \OC\Files\View('/'. $uidn));
foreach ($versions as $v) { foreach ($versions as $v) {
$versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']); $versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']);
} }
...@@ -566,6 +566,7 @@ class Storage { ...@@ -566,6 +566,7 @@ class Storage {
/** /**
* @brief create recursively missing directories * @brief create recursively missing directories
* @param string $filename $path to a file * @param string $filename $path to a file
* @param \OC\Files\View $view view on data/user/
*/ */
private static function createMissingDirectories($filename, $view) { private static function createMissingDirectories($filename, $view) {
$dirname = \OC_Filesystem::normalizePath(pathinfo($filename, PATHINFO_DIRNAME)); $dirname = \OC_Filesystem::normalizePath(pathinfo($filename, PATHINFO_DIRNAME));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment