2013-02-20 22:18:34 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version');
|
|
|
|
|
2013-04-09 17:27:19 +04:00
|
|
|
if (version_compare($installedVersion, '0.4', '<')) {
|
|
|
|
//size of the trash bin could be incorrect, remove it for all users to
|
|
|
|
//enforce a recalculation during next usage.
|
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trashsize`');
|
|
|
|
$result = $query->execute();
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|