summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-18 19:29:44 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-18 19:29:44 +0100
commitfdd179d344dbe8734480b83bb7a0fba189275d5a (patch)
treec044bc5e7d60e8ad5ebccd676d064e2ac581d4d3 /lib
parent69f7bce75b6f45b7f8be376a5d9c14d5da62c91d (diff)
Corrections vue globale
Contribue à https://github.com/marienfressinaud/FreshRSS/issues/353
Diffstat (limited to 'lib')
-rw-r--r--lib/Minz/View.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Minz/View.php b/lib/Minz/View.php
index ba9555cd7..e170bd406 100644
--- a/lib/Minz/View.php
+++ b/lib/Minz/View.php
@@ -63,7 +63,7 @@ class Minz_View {
* Affiche la Vue en elle-même
*/
public function render () {
- if ((@include($this->view_filename)) === false) {
+ if ((include($this->view_filename)) === false) {
Minz_Log::record ('File not found: `'
. $this->view_filename . '`',
Minz_Log::NOTICE);
@@ -79,7 +79,7 @@ class Minz_View {
. self::LAYOUT_PATH_NAME . '/'
. $part . '.phtml';
- if ((@include($fic_partial)) === false) {
+ if ((include($fic_partial)) === false) {
Minz_Log::record ('File not found: `'
. $fic_partial . '`',
Minz_Log::WARNING);
@@ -95,7 +95,7 @@ class Minz_View {
. '/views/helpers/'
. $helper . '.phtml';
- if ((@include($fic_helper)) === false) {;
+ if ((include($fic_helper)) === false) {;
Minz_Log::record ('File not found: `'
. $fic_helper . '`',
Minz_Log::WARNING);