Merge branch '920-white-page-bad-config' of https://github.com/marienfressinaud/FreshRSS into marienfressinaud-920-white-page-bad-config

pull/933/head
Marien Fressinaud 9 years ago
commit 650b5e2721
  1. 1
      CHANGELOG.md
  2. 2
      lib/Minz/Configuration.php

@ -26,6 +26,7 @@
* Generate `base_url` during the installation and add a `pubsubhubbub_enabled` configuration key. [#865](https://github.com/FreshRSS/FreshRSS/issues/865)
* Load configuration by recursion to overwrite array values. [#923](https://github.com/FreshRSS/FreshRSS/issues/923)
* Cast `$limits` configuration values in integer. [#925](https://github.com/FreshRSS/FreshRSS/issues/925)
* Don't hide errors in configuration. [#920](https://github.com/FreshRSS/FreshRSS/issues/920)
## 2015-05-31 FreshRSS 1.1.1 (beta)

@ -39,7 +39,7 @@ class Minz_Configuration {
throw new Minz_FileNotExistException($filename);
}
$data = @include($filename);
$data = include($filename);
if (is_array($data)) {
return $data;
} else {

Loading…
Cancel
Save