aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/View.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Minz/View.php')
-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);