From c3b75b7edba5c56cd4dab24a323167b23814c6bc Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Fri, 3 Oct 2014 01:53:27 +0200 Subject: Rework image manipulation class This is the first of hopefully more classes using namespaces and proper classes that can be used as objects rather than CI's singleton approach. The namespace is mainly used to gain nice autoloading capabilities and it's not really yet used for separation. Signed-off-by: Florian Pritz --- application/core/MY_Controller.php | 1 + 1 file changed, 1 insertion(+) (limited to 'application/core') diff --git a/application/core/MY_Controller.php b/application/core/MY_Controller.php index bba8725a9..53aad9145 100644 --- a/application/core/MY_Controller.php +++ b/application/core/MY_Controller.php @@ -44,6 +44,7 @@ class MY_Controller extends CI_Controller { mb_internal_encoding('UTF-8'); $this->load->helper(array('form', 'filebin')); + $this->load->library('customautoloader'); // TODO: proper accept header handling or is this enough? if (isset($_SERVER["HTTP_ACCEPT"])) { -- cgit v1.2.3-24-g4f1b