Updating code examples in user guide to use CI_Controller instead of Controller
diff --git a/user_guide/general/views.html b/user_guide/general/views.html
index 8f31710..228eb64 100644
--- a/user_guide/general/views.html
+++ b/user_guide/general/views.html
@@ -98,7 +98,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="10">
<?php
-class Blog extends Controller {
+class Blog extends CI_Controller {
function index()
{
@@ -117,7 +117,7 @@
<p>CodeIgniter will intelligently handle multiple calls to $this->load->view from within a controller. If more than one call happens they will be appended together. For example, you may wish to have a header view, a menu view, a content view, and a footer view. That might look something like this:</p>
<p><code><?php<br />
<br />
-class Page extends Controller {<br /><br />
+class Page extends CI_Controller {<br /><br />
function index()<br />
{<br />
@@ -163,7 +163,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="14">
<?php
-class Blog extends Controller {
+class Blog extends CI_Controller {
function index()
{
@@ -203,7 +203,7 @@
<textarea class="textarea" style="width:100%" cols="50" rows="17">
<?php
-class Blog extends Controller {
+class Blog extends CI_Controller {
function index()
{