Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update.php « appinfo « files_trashbin « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 191d3cf25d9b90837a09cdcae7a31ffbc3f14f2c (plain)
1
2
3
4
5
6
7
8
9
<?php

$installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version');

if (version_compare($installedVersion, '0.6', '<')) {
	//size of the trash bin could be incorrect, remove it for all users to
	//enforce a recalculation during next usage.
	\OC_DB::dropTable('files_trashsize');
}