summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoël Cox <joel@joelcox.nl>2011-08-23 15:27:38 +0200
committerJoël Cox <joel@joelcox.nl>2011-08-23 15:27:38 +0200
commit4dd8977b12cdad7634aa9dbfcb80a3a60b7904e9 (patch)
treec90687130a49b6065f5fb32a71dbbac6faf63459
parent3bec087c7e12ad2356774bc10634b2db2f4c7ae6 (diff)
Removed EXT constant and excessive else statement.
-rw-r--r--user_guide/tutorial/news_section.html9
-rw-r--r--user_guide/tutorial/static_pages.html2
2 files changed, 4 insertions, 7 deletions
diff --git a/user_guide/tutorial/news_section.html b/user_guide/tutorial/news_section.html
index 8d8899968..191f0e1eb 100644
--- a/user_guide/tutorial/news_section.html
+++ b/user_guide/tutorial/news_section.html
@@ -105,12 +105,9 @@ function get_news($slug = FALSE)
return $query->result_array();
}
- else
- {
- $query = $this->db->get_where('news', array('slug' => $slug));
- return $query->row_array();
-
- }
+
+ $query = $this->db->get_where('news', array('slug' => $slug));
+ return $query->row_array();
}
</pre>
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 &quot;Hello World!&quot;.</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();