restore Updater functionality on non-Windows platforms

This commit is contained in:
Thomas Mueller 2013-06-13 00:09:52 +02:00
parent 2a3887a5d7
commit 84a8aea410
1 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ class Updater {
$scanner = $storage->getScanner($internalPath);
$scanner->scan($internalPath, Scanner::SCAN_SHALLOW);
$cache->correctFolderSize($internalPath);
self::correctFolder($internalPath, $storage->filemtime($internalPath));
self::correctFolder($path, $storage->filemtime($internalPath));
}
}
@ -60,7 +60,7 @@ class Updater {
$cache = $storage->getCache($internalPath);
$cache->remove($internalPath);
$cache->correctFolderSize($internalPath);
self::correctFolder($internalPath, time());
self::correctFolder($path, time());
}
}
@ -85,8 +85,8 @@ class Updater {
$cache->move($internalFrom, $internalTo);
$cache->correctFolderSize($internalFrom);
$cache->correctFolderSize($internalTo);
self::correctFolder($internalFrom, time());
self::correctFolder($internalTo, time());
self::correctFolder($from, time());
self::correctFolder($to, time());
} else {
self::deleteUpdate($from);
self::writeUpdate($to);