diff options
Diffstat (limited to 'application/config/ConfigManager.php')
-rw-r--r-- | application/config/ConfigManager.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/application/config/ConfigManager.php b/application/config/ConfigManager.php index f2097410..7bfbfc72 100644 --- a/application/config/ConfigManager.php +++ b/application/config/ConfigManager.php | |||
@@ -81,7 +81,11 @@ class ConfigManager | |||
81 | */ | 81 | */ |
82 | protected function load() | 82 | protected function load() |
83 | { | 83 | { |
84 | $this->loadedConfig = $this->configIO->read($this->getConfigFileExt()); | 84 | try { |
85 | $this->loadedConfig = $this->configIO->read($this->getConfigFileExt()); | ||
86 | } catch (\Exception $e) { | ||
87 | die($e->getMessage()); | ||
88 | } | ||
85 | $this->setDefaultValues(); | 89 | $this->setDefaultValues(); |
86 | } | 90 | } |
87 | 91 | ||
@@ -317,7 +321,7 @@ class ConfigManager | |||
317 | $this->setEmpty('updates.check_updates_interval', 86400); | 321 | $this->setEmpty('updates.check_updates_interval', 86400); |
318 | 322 | ||
319 | $this->setEmpty('feed.rss_permalinks', true); | 323 | $this->setEmpty('feed.rss_permalinks', true); |
320 | $this->setEmpty('feed.show_atom', false); | 324 | $this->setEmpty('feed.show_atom', true); |
321 | 325 | ||
322 | $this->setEmpty('privacy.default_private_links', false); | 326 | $this->setEmpty('privacy.default_private_links', false); |
323 | $this->setEmpty('privacy.hide_public_links', false); | 327 | $this->setEmpty('privacy.hide_public_links', false); |