summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/tutorial/static_pages.rst
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-01-26 22:14:53 +0100
committerTimothy Warren <tim@timshomepage.net>2012-01-26 22:14:53 +0100
commit295189dec24ded5617054d62950c27ab544bbdb4 (patch)
tree093d147aa3f2612537f69d6510cdad9fd962e11e /user_guide_src/source/tutorial/static_pages.rst
parenta44a1ca6be4075e8a76e9dff9b31178687f01cee (diff)
parented6485b7c72cf1d1c0ce1a329677a47f8840098a (diff)
Merge branch 'develop' of git://github.com/EllisLab/CodeIgniter into develop
Diffstat (limited to 'user_guide_src/source/tutorial/static_pages.rst')
-rw-r--r--user_guide_src/source/tutorial/static_pages.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/tutorial/static_pages.rst b/user_guide_src/source/tutorial/static_pages.rst
index c7f737951..708eaeb7b 100644
--- a/user_guide_src/source/tutorial/static_pages.rst
+++ b/user_guide_src/source/tutorial/static_pages.rst
@@ -97,7 +97,7 @@ page actually exists:
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();