From: Bjoern Schiessle Date: Thu, 10 Oct 2013 18:09:38 +0000 (+0200) Subject: make files versions root a class constant X-Git-Tag: v6.0.0alpha2~29^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f4e86045dee9578e80cd323d7ea56823388dd4ec;p=nextcloud-server.git make files versions root a class constant --- diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 48c25831ebb..77242216655 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -19,6 +19,7 @@ class Storage { const DEFAULTENABLED=true; const DEFAULTMAXSIZE=50; // unit: percentage; 50% of available disk space/quota + const VERSIONS_ROOT = 'files_versions/'; private static $max_versions_per_interval = array( //first 10sec, one version every 2sec @@ -241,7 +242,7 @@ class Storage { public static function getVersions($uid, $filename) { $versions = array(); // fetch for old versions - $view = new \OC\Files\View('/' . $uid . '/files_versions/'); + $view = new \OC\Files\View('/' . $uid . '/' . self::VERSIONS_ROOT); $pathinfo = pathinfo($filename); @@ -345,8 +346,7 @@ class Storage { */ private static function getAllVersions($uid) { $view = new \OC\Files\View('/' . $uid . '/'); - $versionsPath = 'files_versions/'; - $dirs = array($versionsPath); + $dirs = array(self::VERSIONS_ROOT); while (!empty($dirs)) { $dir = array_pop($dirs);