diff options
Diffstat (limited to 'user_guide/libraries')
-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')); } |