mirror of
https://github.com/getgrav/grav-plugin-admin.git
synced 2025-11-07 13:55:55 +01:00
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:
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
1. [](#bugfix)
|
1. [](#bugfix)
|
||||||
* Fixed fatal error in admin if POST request has `data` in it [#2074](https://github.com/getgrav/grav-plugin-admin/issues/2074)
|
* Fixed fatal error in admin if POST request has `data` in it [#2074](https://github.com/getgrav/grav-plugin-admin/issues/2074)
|
||||||
|
* Fixed Admin creating empty `user/config/info.yaml` file (the file can be safely removed, it is not in use)
|
||||||
|
|
||||||
# v1.10.4
|
# v1.10.4
|
||||||
## 02/17/2021
|
## 02/17/2021
|
||||||
|
|||||||
@@ -1067,6 +1067,9 @@ class AdminPlugin extends Plugin
|
|||||||
// Double check we have system.yaml, site.yaml etc
|
// Double check we have system.yaml, site.yaml etc
|
||||||
$config_path = $this->grav['locator']->findResource('user://config');
|
$config_path = $this->grav['locator']->findResource('user://config');
|
||||||
foreach ($this->admin::configurations() as $config_file) {
|
foreach ($this->admin::configurations() as $config_file) {
|
||||||
|
if ($config_file === 'info') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$config_file = "{$config_path}/{$config_file}.yaml";
|
$config_file = "{$config_path}/{$config_file}.yaml";
|
||||||
if (!file_exists($config_file)) {
|
if (!file_exists($config_file)) {
|
||||||
touch($config_file);
|
touch($config_file);
|
||||||
|
|||||||
Reference in New Issue
Block a user