[eluser]InsiteFX[/eluser]
Like I said above you can try what I showed you, but in most cases you can not over ride the Constructor!
Maybe like this:
Code:
class MY_Loader extends CI_Loader {
function __construct()
{
parent::construct();
$this->_ci_view_path = array(
APPPATH.'views/' => TRUE,
APPPATH.'myview/' => TRUE
);
}
}
Make sure you also leave the view directory in its place!
InsiteFX