Просто расширьте базовый класс CI_Loader.
Создайте новый файл в application / core / MY_Loader.php и расширьте метод __construct
class My_Loader extends CI_Loader
{
function __construct()
{
//Change this property to match your new path
$this->_ci_view_path = APPPATH.'views/';
$this->_ci_ob_level = ob_get_level();
$this->_ci_library_paths = array(APPPATH, BASEPATH);
$this->_ci_helper_paths = array(APPPATH, BASEPATH);
$this->_ci_model_paths = array(APPPATH);
log_message('debug', "Loader Class Initialized");
}
}
Мне очень интересно, сработает ли этот маленький хак:)