]> source.dussan.org Git - nextcloud-server.git/commitdiff
added missing parameter documentation
authorBjoern Schiessle <schiessle@owncloud.com>
Sat, 17 Aug 2013 11:46:33 +0000 (13:46 +0200)
committerBjoern Schiessle <schiessle@owncloud.com>
Sat, 17 Aug 2013 11:46:33 +0000 (13:46 +0200)
apps/files_versions/lib/versions.php

index 39220f43d5f879a728a10d808bcc98e997a608ea..d91654fe24aed6091482a2348d18d487962c7c6b 100644 (file)
@@ -184,7 +184,7 @@ class Storage {
                } else  if ( ($versions = Storage::getVersions($uid, $oldpath)) ) {
                        // create missing dirs if necessary
                        self::createMissingDirectories($newpath, new \OC\Files\View('/'. $uidn));
-                       
+
                        foreach ($versions as $v) {
                                $versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']);
                        }
@@ -566,6 +566,7 @@ class Storage {
        /**
         * @brief create recursively missing directories
         * @param string $filename $path to a file
+        * @param \OC\Files\View $view view on data/user/
         */
        private static function createMissingDirectories($filename, $view) {
                $dirname = \OC_Filesystem::normalizePath(pathinfo($filename, PATHINFO_DIRNAME));