summaryrefslogtreecommitdiff
path: root/lib/Minz/View.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-19 22:25:49 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-19 22:25:49 +0100
commit4e4b0f717fe0a8378e2b751393a8c19d1ada6eb2 (patch)
tree6b268cfe46eb3eee8ebaddcd1e17067eaca0214f /lib/Minz/View.php
parent12e0b6b094041fc22937520b3218e4f61915fd50 (diff)
parent79d4893fc792119c390d2f744246df210b74f637 (diff)
Merge remote-tracking branch 'origin/dev' into beta
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);