summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2010-11-10 22:12:55 +0100
committerPascal Kriete <pascal.kriete@ellislab.com>2010-11-10 22:12:55 +0100
commita7056988f0f54975ae479c8ea0edf27f0dc9c880 (patch)
treefedd13d2cd4061728fd976f8e66119f6d94e0f3d /user_guide/libraries
parent2814cd15b61fcc6f18b9bd204e1bd22e8db73b12 (diff)
some doc fixes to show __construct instead of CI_Controller
Diffstat (limited to 'user_guide/libraries')
-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 ea0e2a283..00bc0c076 100644
--- a/user_guide/libraries/file_uploading.html
+++ b/user_guide/libraries/file_uploading.html
@@ -146,9 +146,9 @@ folder:</p>
class Upload extends CI_Controller {
- function Upload()
+ function __construct()
{
- parent::CI_Controller();
+ parent::__construct();
$this->load->helper(array('form', 'url'));
}