Remove old config parts

- config.hostname
- system.urlpath
- system.ssl_policy
This commit is contained in:
Philipp
2023-02-18 20:28:01 +01:00
parent 45749c14be
commit 96e12be26b
6 changed files with 14 additions and 9 deletions

View File

@@ -1287,3 +1287,15 @@ function update_1514()
return Update::SUCCESS;
}
function update_1515()
{
DI::config()
->beginTransaction()
->delete('config', 'hostname')
->delete('system', 'urlpath')
->delete('system', 'ssl_policy')
->commit();
return Update::SUCCESS;
}