2013-02-20 18:18:34 +00:00
|
|
|
<?php
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2013-02-20 18:18:34 +00:00
|
|
|
$installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version');
|
|
|
|
|
2014-02-25 20:35:54 +00:00
|
|
|
if (version_compare($installedVersion, '0.6', '<')) {
|
2013-04-09 13:27:19 +00:00
|
|
|
//size of the trash bin could be incorrect, remove it for all users to
|
|
|
|
//enforce a recalculation during next usage.
|
2014-06-02 16:57:53 +00:00
|
|
|
\OC_DB::dropTable('files_trashsize');
|
2013-08-18 09:02:08 +00:00
|
|
|
}
|