mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 08:29:10 -05:00
8 lines
281 B
PHP
8 lines
281 B
PHP
<?php
|
|
|
|
// this drops the keys below, because they aren't needed anymore
|
|
// core related
|
|
if (version_compare(\OCP\Config::getSystemValue('version', '0.0.0'), '7.0.0', '<')) {
|
|
\OCP\Config::deleteSystemValue('allowZipDownload');
|
|
\OCP\Config::deleteSystemValue('maxZipInputSize');
|
|
}
|