summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/file_uploading.html
diff options
context:
space:
mode:
authorGreg Aker <greg.aker@ellislab.com>2010-11-09 20:53:07 +0100
committerGreg Aker <greg.aker@ellislab.com>2010-11-09 20:53:07 +0100
commit16fcb2e706651c5d81bae56d0223f467c1e291da (patch)
tree9eb454b6602646d4402d4cb89856e99bee0f47c5 /user_guide/libraries/file_uploading.html
parent63277b81edde11b77ff94cbf1c3e5db16c97c4bf (diff)
Updating code examples in user guide to use CI_Controller instead of Controller
Diffstat (limited to 'user_guide/libraries/file_uploading.html')
-rw-r--r--user_guide/libraries/file_uploading.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/file_uploading.html b/user_guide/libraries/file_uploading.html
index 254b2666a..ea0e2a283 100644
--- a/user_guide/libraries/file_uploading.html
+++ b/user_guide/libraries/file_uploading.html
@@ -144,11 +144,11 @@ folder:</p>
<textarea class="textarea" style="width:100%" cols="50" rows="43">&lt;?php
-class Upload extends Controller {
+class Upload extends CI_Controller {
function Upload()
{
- parent::Controller();
+ parent::CI_Controller();
$this->load->helper(array('form', 'url'));
}