summaryrefslogtreecommitdiff
path: root/web/core/_controller.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/core/_controller.php')
-rw-r--r--web/core/_controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/core/_controller.php b/web/core/_controller.php
index 8a467d6..a357ccc 100644
--- a/web/core/_controller.php
+++ b/web/core/_controller.php
@@ -37,7 +37,7 @@ abstract class Controller {
protected function view($__name, $data = array()) {
$__root = $GLOBALS['webroot'];
- $__path = $__root . '/views/' . $__name . '.php';
+ $__path = $__root . '/_views/' . $__name . '.php';
if (is_file($__path)) {
extract($data);
require($__path);