Selaa lähdekoodia

Don't hide errors in configuration

Fix https://github.com/FreshRSS/FreshRSS/issues/920
Marien Fressinaud 10 vuotta sitten
vanhempi
commit
6dbe33c51e
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      lib/Minz/Configuration.php

+ 1 - 1
lib/Minz/Configuration.php

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