summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--web/_views/apps/error/main.php (renamed from web/views/apps/error/main.php)0
-rw-r--r--web/_views/apps/home/main.php (renamed from web/views/apps/home/main.php)0
-rw-r--r--web/_views/footer.php (renamed from web/views/footer.php)0
-rw-r--r--web/_views/header.php (renamed from web/views/header.php)0
-rw-r--r--web/_views/modal/new_post.php (renamed from web/views/modal/new_post.php)0
-rw-r--r--web/_views/template/comment.php (renamed from web/views/template/comment.php)0
-rw-r--r--web/_views/template/error.php (renamed from web/views/template/error.php)0
-rw-r--r--web/_views/template/modal.php (renamed from web/views/template/modal.php)0
-rw-r--r--web/_views/template/pfp.php (renamed from web/views/template/pfp.php)0
-rw-r--r--web/_views/template/post.php (renamed from web/views/template/post.php)0
-rw-r--r--web/_views/template/toast.php (renamed from web/views/template/toast.php)0
-rw-r--r--web/core/_controller.php2
12 files changed, 1 insertions, 1 deletions
diff --git a/web/views/apps/error/main.php b/web/_views/apps/error/main.php
index 81051bd..81051bd 100644
--- a/web/views/apps/error/main.php
+++ b/web/_views/apps/error/main.php
diff --git a/web/views/apps/home/main.php b/web/_views/apps/home/main.php
index b1c1efc..b1c1efc 100644
--- a/web/views/apps/home/main.php
+++ b/web/_views/apps/home/main.php
diff --git a/web/views/footer.php b/web/_views/footer.php
index 1266b9a..1266b9a 100644
--- a/web/views/footer.php
+++ b/web/_views/footer.php
diff --git a/web/views/header.php b/web/_views/header.php
index 891e27e..891e27e 100644
--- a/web/views/header.php
+++ b/web/_views/header.php
diff --git a/web/views/modal/new_post.php b/web/_views/modal/new_post.php
index 82243fb..82243fb 100644
--- a/web/views/modal/new_post.php
+++ b/web/_views/modal/new_post.php
diff --git a/web/views/template/comment.php b/web/_views/template/comment.php
index 943f232..943f232 100644
--- a/web/views/template/comment.php
+++ b/web/_views/template/comment.php
diff --git a/web/views/template/error.php b/web/_views/template/error.php
index 2e02cb1..2e02cb1 100644
--- a/web/views/template/error.php
+++ b/web/_views/template/error.php
diff --git a/web/views/template/modal.php b/web/_views/template/modal.php
index e3ce6fe..e3ce6fe 100644
--- a/web/views/template/modal.php
+++ b/web/_views/template/modal.php
diff --git a/web/views/template/pfp.php b/web/_views/template/pfp.php
index aec7318..aec7318 100644
--- a/web/views/template/pfp.php
+++ b/web/_views/template/pfp.php
diff --git a/web/views/template/post.php b/web/_views/template/post.php
index 40a3c1d..40a3c1d 100644
--- a/web/views/template/post.php
+++ b/web/_views/template/post.php
diff --git a/web/views/template/toast.php b/web/_views/template/toast.php
index 1f74602..1f74602 100644
--- a/web/views/template/toast.php
+++ b/web/_views/template/toast.php
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);