10 lines
361 B
PHP
10 lines
361 B
PHP
<?php
|
|
|
|
$installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version');
|
|
|
|
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();
|
|
} |