Merge pull request #11507 from owncloud/versioning_expire

make sure that we always delete oldest first
This commit is contained in:
Björn Schießle 2014-10-10 17:31:26 +02:00
commit 3f9cab00e3
1 changed files with 3 additions and 0 deletions

View File

@ -517,6 +517,9 @@ class Storage {
// but always keep the two latest versions
$numOfVersions = count($allVersions) -2 ;
$i = 0;
// sort oldest first and make sure that we start at the first element
ksort($allVersions);
reset($allVersions);
while ($availableSpace < 0 && $i < $numOfVersions) {
$version = current($allVersions);
\OC_Hook::emit('\OCP\Versions', 'preDelete', array('path' => $version['path'].'.v'.$version['version']));