diff options
author | Joël Cox <joel@joelcox.nl> | 2011-08-23 15:27:38 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-10-27 00:43:50 +0200 |
commit | d5141d2008abbf709c30463797df16d3291e3c9c (patch) | |
tree | 2913f1c72b9f5b3c52ee6db0c5738a8666734da3 /user_guide/tutorial/static_pages.html | |
parent | b430ecd00aaa80c63734b508c82501bec3a0b703 (diff) |
Removed EXT constant and excessive else statement.
Diffstat (limited to 'user_guide/tutorial/static_pages.html')
-rw-r--r-- | user_guide/tutorial/static_pages.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/tutorial/static_pages.html b/user_guide/tutorial/static_pages.html index d5eec43da..bf52f4543 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!".</p> function view($page = 'home') { - if ( ! file_exists('application/views/pages/' . $page . EXT)) + if ( ! file_exists('application/views/pages/' . $page . '.php')) { // Whoops, we don't have a page for that! show_404(); |