We drop support for the `INI` config backend type with v2.11

This commit is contained in:
Johannes Meyer 2021-06-22 16:48:06 +02:00
parent 6c03c80f97
commit 1fd00dcf1c
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class GeneralConfigForm extends ConfigForm
parent::onRequest();
if ($this->config->getConfigObject()->global->config_backend === 'ini') {
$this->warning('The preferences backend of type INI is deprecated and will be removed with version 2.10');
$this->warning('The preferences backend of type INI is deprecated and will be removed with version 2.11');
}
}
}

View File

@ -127,7 +127,7 @@ abstract class PreferencesStore
}
if ($type === 'Ini') {
Logger::warning('The preferences backend of type INI is deprecated and will be removed with version 2.10');
Logger::warning('The preferences backend of type INI is deprecated and will be removed with version 2.11');
$config->location = Config::resolvePath('preferences');
} elseif ($type === 'Db') {
$config->connection = new DbConnection(ResourceFactory::getResourceConfig($config->resource));