diff options
| -rw-r--r-- | views/sample_archive/index.php | 1 | ||||
| -rw-r--r-- | views/test/index.php | 1 | ||||
| -rw-r--r-- | views/test1/index.php | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/views/sample_archive/index.php b/views/sample_archive/index.php index 9d7addd..1f1ed17 100644 --- a/views/sample_archive/index.php +++ b/views/sample_archive/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Archive a page'; include '../meta.php'; runController('archive_page'); ?> diff --git a/views/test/index.php b/views/test/index.php index df83e60..e5656e1 100644 --- a/views/test/index.php +++ b/views/test/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Test page'; include '../meta.php'; ?> diff --git a/views/test1/index.php b/views/test1/index.php index fdd19f2..6fb737c 100644 --- a/views/test1/index.php +++ b/views/test1/index.php @@ -1,4 +1,5 @@ <?php + $title = 'Added user'; include '../meta.php'; runController('test'); ?> |
