From 5800de6835bfa943b7ffca94917f3f85696cc35f Mon Sep 17 00:00:00 2001 From: Wes Baker Date: Wed, 14 May 2014 14:20:54 -0400 Subject: Corrections to the tutorial. --- user_guide/tutorial/news_section.html | 4 ++-- user_guide/tutorial/static_pages.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/tutorial') diff --git a/user_guide/tutorial/news_section.html b/user_guide/tutorial/news_section.html index f8e64fc36..f3d616ab8 100644 --- a/user_guide/tutorial/news_section.html +++ b/user_guide/tutorial/news_section.html @@ -161,7 +161,7 @@ public function index() <?php foreach ($news as $news_item): ?> <h2><?php echo $news_item['title'] ?></h2> - <div id="main"> + <div class="main"> <?php echo $news_item['text'] ?> </div> <p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p> @@ -227,4 +227,4 @@ Next Topic:  Create news items - \ No newline at end of file + diff --git a/user_guide/tutorial/static_pages.html b/user_guide/tutorial/static_pages.html index 4b138d74e..e9aaa9739 100644 --- a/user_guide/tutorial/static_pages.html +++ b/user_guide/tutorial/static_pages.html @@ -137,7 +137,7 @@ If you like to be particularly un-original, try "Hello World!".

public function view($page = 'home') { - if ( ! file_exists('application/views/pages/'.$page.'.php')) + if ( ! file_exists(APPPATH.'/views/pages/'.$page.'.php')) { // Whoops, we don't have a page for that! show_404(); @@ -203,4 +203,4 @@ Next Topic:  News section - \ No newline at end of file + -- cgit v1.2.3-24-g4f1b