diff --git a/app/src/Model/Table/AppSettingsTable.php b/app/src/Model/Table/AppSettingsTable.php index 5d6c58c..8c1e907 100644 --- a/app/src/Model/Table/AppSettingsTable.php +++ b/app/src/Model/Table/AppSettingsTable.php @@ -144,9 +144,6 @@ public function getAllAppSettings() foreach ($settings as $setting) { $this->_appSettingsCache[$setting->name] = $setting->value; } - //write the app settings to a local file real quick as yaml - $yaml = yaml_emit($this->_appSettingsCache); - file_put_contents(CONFIG . "../tmp/app_settings.yaml", $yaml); return $this->_appSettingsCache; }