diff options
Diffstat (limited to 'lib/minz/View.php')
| -rwxr-xr-x | lib/minz/View.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/minz/View.php b/lib/minz/View.php index 2bb747aa9..1bfa0a61f 100755 --- a/lib/minz/View.php +++ b/lib/minz/View.php @@ -69,9 +69,9 @@ class View { if (file_exists ($this->view_filename)) { include ($this->view_filename); } else { - Log::record ('File doesn\'t exist : `' + Minz_Log::record ('File doesn\'t exist : `' . $this->view_filename . '`', - Log::NOTICE); + Minz_Log::NOTICE); } } @@ -87,9 +87,9 @@ class View { if (file_exists ($fic_partial)) { include ($fic_partial); } else { - Log::record ('File doesn\'t exist : `' + Minz_Log::record ('File doesn\'t exist : `' . $fic_partial . '`', - Log::WARNING); + Minz_Log::WARNING); } } @@ -105,9 +105,9 @@ class View { if (file_exists ($fic_helper)) { include ($fic_helper); } else { - Log::record ('File doesn\'t exist : `' + Minz_Log::record ('File doesn\'t exist : `' . $fic_helper . '`', - Log::WARNING); + Minz_Log::WARNING); } } |
