Fixed Admin creating empty user/config/info.yaml file (the file can be safely removed, it is not in use)

This commit is contained in:
Matias Griese
2021-02-18 15:38:49 +02:00
parent 64e41b034e
commit 2cd783dfa6
2 changed files with 4 additions and 0 deletions

View File

@@ -1067,6 +1067,9 @@ class AdminPlugin extends Plugin
// Double check we have system.yaml, site.yaml etc
$config_path = $this->grav['locator']->findResource('user://config');
foreach ($this->admin::configurations() as $config_file) {
if ($config_file === 'info') {
continue;
}
$config_file = "{$config_path}/{$config_file}.yaml";
if (!file_exists($config_file)) {
touch($config_file);