diff options
author | Pascal Kriete <pascal.kriete@ellislab.com> | 2010-11-10 22:12:55 +0100 |
---|---|---|
committer | Pascal Kriete <pascal.kriete@ellislab.com> | 2010-11-10 22:12:55 +0100 |
commit | a7056988f0f54975ae479c8ea0edf27f0dc9c880 (patch) | |
tree | fedd13d2cd4061728fd976f8e66119f6d94e0f3d /user_guide/libraries/file_uploading.html | |
parent | 2814cd15b61fcc6f18b9bd204e1bd22e8db73b12 (diff) |
some doc fixes to show __construct instead of CI_Controller
Diffstat (limited to 'user_guide/libraries/file_uploading.html')
-rw-r--r-- | user_guide/libraries/file_uploading.html | 4 |
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')); } |